18 lines
419 B
C#
18 lines
419 B
C#
namespace Script.Gameplay.Interface
|
|
{
|
|
public enum LockLevel
|
|
{
|
|
Red,
|
|
Blue,
|
|
Yellow,
|
|
}
|
|
|
|
public interface IEditableComponent
|
|
{
|
|
public bool IsEnableEdit { get; set; }
|
|
//public bool IsComponentActive { get; set; }
|
|
public bool IsOpenInEditor { get; set; }
|
|
public string ComponentName { get; set; }
|
|
//public LockLevel LockLevel { get; }
|
|
}
|
|
} |