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