display note on grid

This commit is contained in:
Michele 2020-11-30 23:17:12 +00:00 committed by Michele Scandura
parent ec98d53f48
commit af7d9ee6cb
2 changed files with 43 additions and 0 deletions

View file

@ -26,6 +26,7 @@ namespace Sledgemapper.Shared.Entities
Map = new ConcurrentDictionary<string, Tile>();
Overlays = new ConcurrentDictionary<string, Overlay>();
Walls = new ConcurrentDictionary<string, Wall>();
Notes = new ConcurrentDictionary<string, Note>();
Players = new List<Player>();
Colors = new List<string>();
}
@ -33,6 +34,7 @@ namespace Sledgemapper.Shared.Entities
public ConcurrentDictionary<string, Tile> Map { get; set; }
public ConcurrentDictionary<string, Wall> Walls { get; set; }
public ConcurrentDictionary<string, Overlay> Overlays { get; set; }
public ConcurrentDictionary<string, Note> Notes { get; set; }
public bool IsValid { get; set; }
public List<Player> Players { get; set; }
public List<string> Colors { get; set; }