using Unity.Entities; namespace ProjectM.Simulation { /// /// Trivial unmanaged component used by the setup smoke test to prove the ECS /// compile + source-gen + tick path works. Safe to delete once real gameplay exists. /// public struct Heartbeat : IComponentData { public int Tick; } }