display note on grid
This commit is contained in:
parent
ec98d53f48
commit
af7d9ee6cb
2 changed files with 43 additions and 0 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue