aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/Save.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-28 16:33:07 -0400
committerMichael <[email protected]>2017-06-28 16:33:07 -0400
commit27264a559d7fd40a0c2bc393a5e150c17da1539d (patch)
treeed02811fbd109b1637cd9b6a818af3eb4ce46e59 /ShiftOS.Objects/Save.cs
parent6cdb8cb0253230f6f845afb549517c5c3f12d2d1 (diff)
downloadshiftos_thereturn-27264a559d7fd40a0c2bc393a5e150c17da1539d.tar.gz
shiftos_thereturn-27264a559d7fd40a0c2bc393a5e150c17da1539d.tar.bz2
shiftos_thereturn-27264a559d7fd40a0c2bc393a5e150c17da1539d.zip
Basics of the virus system
Diffstat (limited to 'ShiftOS.Objects/Save.cs')
-rw-r--r--ShiftOS.Objects/Save.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/ShiftOS.Objects/Save.cs b/ShiftOS.Objects/Save.cs
index 7323028..c6a7f61 100644
--- a/ShiftOS.Objects/Save.cs
+++ b/ShiftOS.Objects/Save.cs
@@ -33,6 +33,8 @@ namespace ShiftOS.Objects
//Better to store this stuff server-side so we can do some neat stuff with hacking...
public class Save
{
+ public List<ViralInfection> ViralInfections { get; set; }
+
public bool MusicEnabled = true;
public bool SoundEnabled = true;
public int MusicVolume = 100;
@@ -159,4 +161,11 @@ namespace ShiftOS.Objects
return true;
}
}
+
+ public class ViralInfection
+ {
+ public string ID { get; set; }
+ public int ThreatLevel { get; set; }
+ }
+
}