8 lines
205 B
C#
8 lines
205 B
C#
namespace GameCore.ECS.Interfaces;
|
|
|
|
public interface IPresenterComponent
|
|
{
|
|
void Initialize(Entity coreEntity, World world);
|
|
void SyncToPresentation(float delta);
|
|
void SyncToCore(float delta);
|
|
} |