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

20 lines
365 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace Language.Lua
{
public partial class Term : Expr
{
public override LuaValue Evaluate(LuaTable enviroment)
{
throw new NotImplementedException();
}
public override Term Simplify()
{
return this;
}
}
}