namespace Script.Gameplay.Facility { public enum LockLevel { Red, Blue, Yellow, } public interface IEditableComponent { public LockLevel LockLevel { get; } public void SetActive(bool active); } }