Files
2024-11-20 15:21:28 +01:00

13 lines
254 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Language.Lua
{
public abstract partial class Statement
{
public abstract LuaValue Execute(LuaTable enviroment, out bool isBreak);
}
}