ProjectDDD/Assets/Plugins/Pixel Crushers/Dialogue System/Scripts/Lua/Lua Interpreter/Chunk/Statement.cs

13 lines
254 B (Stored with Git LFS)
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);
}
}