first campaing bits
This commit is contained in:
parent
3ca5db1f47
commit
dcc59f7b69
58 changed files with 129 additions and 2522 deletions
10
Sledgemapper.Shared/Entities/Campaign.cs
Normal file
10
Sledgemapper.Shared/Entities/Campaign.cs
Normal file
|
@ -0,0 +1,10 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Sledgemapper.Shared.Entities;
|
||||
|
||||
public class Campaign
|
||||
{
|
||||
public Guid Id {get;set;}
|
||||
public string Name { get; set; }
|
||||
public List<Map> Maps {get;set;}
|
||||
}
|
|
@ -16,6 +16,11 @@ namespace Sledgemapper.Shared.Entities
|
|||
public MapEntityDeletedEventArgs(BaseMapEntity mapEntity) => MapEntity = mapEntity;
|
||||
}
|
||||
|
||||
public class Map:Session
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
public class Session
|
||||
{
|
||||
public event EventHandler<MapEntityAddedEventArgs> MapEntityAdded;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue