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