Begin faction system

This commit is contained in:
hydrant
2018-09-22 00:55:38 +02:00
parent e36116aae4
commit bac110258d
3 changed files with 21 additions and 0 deletions

View File

@@ -31,6 +31,7 @@ namespace reallife_gamemode.Server.Entities
[StringLength(64)]
public string Email { get; set; }
public AdminLevel AdminLevel { get; set; }
public Faction Faction { get; set; }
public bool IsAdmin(AdminLevel level) => AdminLevel >= level;
}