using Sirenix.OdinInspector; using UnityEngine; namespace Cielonos.MainGame { public class SubmoduleBase { [HideInInspector] public T owner; public SubmoduleBase(T owner) { this.owner = owner; } public void SetOwner(T newOwner) { this.owner = newOwner; } } }