chore: Added Initial Engine Code
This commit is contained in:
9
Engine.Core/Abstract/IStateEnable.cs
Normal file
9
Engine.Core/Abstract/IStateEnable.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
using System;
|
||||
|
||||
namespace Syntriax.Engine.Core.Abstract;
|
||||
|
||||
public interface IStateEnable : IAssignableEntity
|
||||
{
|
||||
Action<IStateEnable>? OnEnabledChanged { get; set; }
|
||||
bool Enabled { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user