using MoonSharp.Interpreter; namespace Fungus { public interface ILuaStore { /// /// A Lua table that can be shared between multiple LuaEnvironments. /// Table PrimeTable { get; } } }