diff options
Diffstat (limited to 'ShiftOS.Objects/Legion.cs')
| -rw-r--r-- | ShiftOS.Objects/Legion.cs | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/ShiftOS.Objects/Legion.cs b/ShiftOS.Objects/Legion.cs index c67a11d..c5e12f3 100644 --- a/ShiftOS.Objects/Legion.cs +++ b/ShiftOS.Objects/Legion.cs @@ -58,6 +58,16 @@ namespace ShiftOS.Objects public Dictionary<string, LegionRole> Roles { get; set; } public Dictionary<LegionRole, string> RoleNames { get; set; } - //Just adding a birbb in here + public UserClass Class { get; set; } + public double RawReputation { get; set; } + + public Reputation Reputation + { + get + { + return (Reputation)((int)Math.Round(RawReputation)); + } + } + } } |
