using Mine2d.game.core.data; namespace Mine2d.game.state; public class GameState { public List Players { get; set; } = new List(); public World World { get; set; } public uint Tick { get; set; } }