Interface ILuaTable
- Namespace
- Cobilas.GodotEngine.GDLua.Interfaces
- Assembly
- com.cobilas.godot.lua.dll
Represents a basic Lua table element with a name and value.
public interface ILuaTable
Properties
Name
Gets the name of the Lua table element.
string Name { get; }
Property Value
- string
The name identifier of the table element.
Value
Gets the value stored in the Lua table element.
object Value { get; }
Property Value
- object
The value contained in the table element.