11 lines
234 B
C#
11 lines
234 B
C#
using GameCore.ECS;
|
|
using GameCore.ECS.Interfaces;
|
|
using Godot;
|
|
|
|
namespace CryptonymThunder.Code.Presenters;
|
|
|
|
[GlobalClass]
|
|
public partial class EntityPresenter : Node3D, IEntityPresenter
|
|
{
|
|
public Entity CoreEntity { get; set; }
|
|
} |