Files
riversong-code-showcase/Source/Riversong/Game/World/EntityIdMap/EntityIdMapValue.cs
2026-05-21 16:04:49 +02:00

11 lines
199 B
C#

namespace DanieleMarotta.RiversongCodeShowcase
{
public struct EntityIdMapValue
{
public int BuildingId;
public int ResourceNodeId;
public int CritterHerdId;
}
}