This commit is contained in:
2022-12-17 21:16:02 +04:00
parent 13044357a5
commit ab85578ccf
9 changed files with 565 additions and 558 deletions
+12 -12
View File
@@ -1,13 +1,13 @@
namespace Ragon.Core.Game;
public class RoomInformation
{
public string Map { get; set; }
public int Min { get; set; }
public int Max { get; set; }
public override string ToString()
{
return $"Map: {Map} Count: {Min}/{Max}";
}
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}";
}
}