aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Legion.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-09 10:00:16 -0400
committerMichael <[email protected]>2017-04-09 10:00:16 -0400
commitd7ac3bb7e68906de70ceff3428084a05312fb56d (patch)
treecfc62fd78b81ae3c49cf9b9961dd675358a45dbe /ShiftOS.Objects/Legion.cs
parent70557ebe5dd72d95dc06eb4c628733054e58a7d1 (diff)
downloadshiftos_thereturn-d7ac3bb7e68906de70ceff3428084a05312fb56d.tar.gz
shiftos_thereturn-d7ac3bb7e68906de70ceff3428084a05312fb56d.tar.bz2
shiftos_thereturn-d7ac3bb7e68906de70ceff3428084a05312fb56d.zip
Reputation work.
Diffstat (limited to 'ShiftOS.Objects/Legion.cs')
-rw-r--r--ShiftOS.Objects/Legion.cs12
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));
+ }
+ }
+
}
}