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

15 lines
267 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Language.Lua
{
public partial class NilLiteral : Term
{
public override LuaValue Evaluate(LuaTable enviroment)
{
return LuaNil.Nil;
}
}
}