Add attribute system with core stats and gameplay components
This commit is contained in:
8
GameCore/ECS/Interfaces/IPresenterComponent.cs
Normal file
8
GameCore/ECS/Interfaces/IPresenterComponent.cs
Normal file
@@ -0,0 +1,8 @@
|
||||
namespace GameCore.ECS.Interfaces;
|
||||
|
||||
public interface IPresenterComponent
|
||||
{
|
||||
void Initialize(Entity coreEntity, World world);
|
||||
void SyncToPresentation(float delta);
|
||||
void SyncToCore(float delta);
|
||||
}
|
||||
Reference in New Issue
Block a user