Files
Ragon/Ragon.Core/Game/RoomInformation.cs
T

13 lines
271 B
C#
Raw Normal View History

2022-12-17 21:16:02 +04:00
namespace Ragon.Core.Game;
public class RoomInformation
{
public string Map { get; init; } = "none";
public int Min { get; init; }
public int Max { get; init; }
public override string ToString()
{
return $"Map: {Map} Count: {Min}/{Max}";
}
2022-12-16 00:05:46 +04:00
}