16 lines
310 B
C#
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; }
|
|
}
|
|
} |