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

14 lines
255 B (Stored with Git LFS)
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Language.Lua
{
public abstract partial class Expr
{
public abstract LuaValue Evaluate(LuaTable enviroment);
public abstract Term Simplify();
}
}