2025-10-20 09:02:15 +08:00
|
|
|
namespace Script.Gameplay.Interface
|
2025-10-18 08:55:38 +08:00
|
|
|
{
|
|
|
|
public enum LockLevel
|
|
|
|
{
|
|
|
|
Red,
|
|
|
|
Blue,
|
|
|
|
Yellow,
|
|
|
|
}
|
|
|
|
|
|
|
|
public interface IEditableComponent
|
|
|
|
{
|
2025-10-18 11:00:06 +08:00
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public string ComponentName { get; set; }
|
2025-10-18 08:55:38 +08:00
|
|
|
public LockLevel LockLevel { get; }
|
|
|
|
}
|
|
|
|
}
|