Files
brick-framework/GameCore/ECS/Interfaces/IPresenterComponent.cs

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);
}