From 27264a559d7fd40a0c2bc393a5e150c17da1539d Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 28 Jun 2017 16:33:07 -0400 Subject: Basics of the virus system --- ShiftOS.Objects/Save.cs | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'ShiftOS.Objects') 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 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; } + } + } -- cgit v1.2.3