adding back session name to session, will need some work
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Michele Scandura 2021-09-17 15:37:08 +01:00
parent 6a75126068
commit 454c507b2f

View File

@ -47,9 +47,9 @@ public class Map:Session
public List<Player> Players { get; set; }
public ConcurrentDictionary<Guid, Ping> Pings { get; set; }
public List<string> Colors { get; set; }
//public string SessionName { get; set; }
//public Guid SessionId { get; set; }
public ConcurrentDictionary<string, Line> Lines { get; set; }
public string SessionName { get; set; }
public Guid SessionId { get; set; }
public ConcurrentDictionary<string, Line> Lines { get; set; }
public ConcurrentDictionary<string, Room> Rooms { get; set; }
public void NewTile(Tile selectedTile, string tileId)