10 lines
199 B
C#
10 lines
199 B
C#
|
using System;
|
||
|
|
||
|
namespace Syntriax.Engine.Core.Abstract;
|
||
|
|
||
|
public interface IStateEnable : IAssignableEntity
|
||
|
{
|
||
|
Action<IStateEnable>? OnEnabledChanged { get; set; }
|
||
|
bool Enabled { get; set; }
|
||
|
}
|