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

20 lines
392 B
C#
Raw Normal View History

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