Files
2025TapTapGameJam/Assets/Script/Gameplay/Interface/IEditableComponent.cs
2025-10-21 15:32:59 +08:00

16 lines
318 B
C#

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