using UnityEngine; namespace Continentis.MainGame { public class SubmoduleBase { [HideInInspector] public T owner; public SubmoduleBase(T owner) { this.owner = owner; } } }