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

12 lines
235 B (Stored with Git LFS)
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Language.Lua
{
public abstract partial class Access
{
public abstract LuaValue Evaluate(LuaValue baseValue, LuaTable enviroment);
}
}