chore: Added Initial Engine Code
This commit is contained in:
13
Engine.Core/Abstract/IInitialize.cs
Normal file
13
Engine.Core/Abstract/IInitialize.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using System;
|
||||
|
||||
namespace Syntriax.Engine.Core.Abstract;
|
||||
|
||||
public interface IInitialize : IEntity
|
||||
{
|
||||
Action<IInitialize>? OnInitialized { get; set; }
|
||||
Action<IInitialize>? OnFinalized { get; set; }
|
||||
bool Initialized { get; }
|
||||
|
||||
bool Initialize();
|
||||
bool Finalize();
|
||||
}
|
||||
Reference in New Issue
Block a user