10 lines
353 B
C#
10 lines
353 B
C#
using GameCore.ECS.Interfaces;
|
|
|
|
namespace GameCore.ECS;
|
|
|
|
public readonly struct PresenterData(Entity entity, IEntityPresenter presenter, List<IPresenterComponent> components)
|
|
{
|
|
public readonly Entity Entity = entity;
|
|
public readonly IEntityPresenter Presenter = presenter;
|
|
public readonly List<IPresenterComponent> Components = components;
|
|
} |