using UnityEngine; using System.Collections; namespace Fungus { /// /// Binds objects to identifiers in a Lua Environment. /// public interface ILuaBindings { /// /// Add all declared bindings to the globals table. /// void AddBindings(ILuaEnvironment luaEnv); } }