Files
brick-framework/GameCore/Interaction/WorldIdComponent.cs

8 lines
173 B
C#

using GameCore.ECS.Interfaces;
namespace GameCore.Interaction;
public class WorldIdComponent(string worldId) : IComponent
{
public readonly string WorldId = worldId;
}