using System.Collections; using System.Collections.Generic; using UnityEngine; namespace KairoEngine.Core.ModuleSystem { public interface IGameModule { string name { get; set; } void Load(Transform parent); void Reset(); void Destroy(); } }