Files
2025TapTapGameJam/Assets/Script/Gameplay/Interface/IEditableComponent.cs

16 lines
310 B
C#

namespace Script.Gameplay.Interface
{
public enum LockLevel
{
Red,
Blue,
Yellow,
}
public interface IEditableComponent
{
public bool IsActive { get; set; }
public string ComponentName { get; set; }
public LockLevel LockLevel { get; }
}
}