Feature/character creator

This commit is contained in:
VegaZ
2018-10-24 20:51:54 +02:00
parent 5d581ed66d
commit ae6801cedb
14 changed files with 1184 additions and 15 deletions

View File

@@ -42,10 +42,13 @@ namespace reallife_gamemode.Server.Entities
public float PositionY { get; set; }
public float PositionZ { get; set; }
[ForeignKey("Character")]
public int? CharacterId { get; set; }
public Character Character { get; set; }
[ForeignKey("Ban")]
public int? BanId { get; set; }
public Ban Ban { get; set; }
public int? FactionId { get; set; }
public Faction Faction { get; set; }