diff options
| author | Michael <[email protected]> | 2017-07-17 14:34:59 -0400 |
|---|---|---|
| committer | Michael <[email protected]> | 2017-07-17 14:34:59 -0400 |
| commit | a0ee79dbcd26a8f07d493a7e993cbaf0d02e44db (patch) | |
| tree | d974220621e6cfcfe745c2825149ca370e3a7aab /ShiftOS.Objects | |
| parent | e929a9f5105c00b0a3a2b4e75a876bbb95bbfa7b (diff) | |
| download | shiftos_thereturn-a0ee79dbcd26a8f07d493a7e993cbaf0d02e44db.tar.gz shiftos_thereturn-a0ee79dbcd26a8f07d493a7e993cbaf0d02e44db.tar.bz2 shiftos_thereturn-a0ee79dbcd26a8f07d493a7e993cbaf0d02e44db.zip | |
Hacking, barebones fskimmer, double clicking
Diffstat (limited to 'ShiftOS.Objects')
| -rw-r--r-- | ShiftOS.Objects/Hackable.cs | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/ShiftOS.Objects/Hackable.cs b/ShiftOS.Objects/Hackable.cs index cb05b0c..309ce87 100644 --- a/ShiftOS.Objects/Hackable.cs +++ b/ShiftOS.Objects/Hackable.cs @@ -22,8 +22,8 @@ namespace ShiftOS.Objects public SystemType SystemType { get; set; } public string OnHackCompleteStoryEvent { get; set; } + public string OnHackFailedStoryEvent { get; set; } - public string Dependencies { get; set; } @@ -52,4 +52,23 @@ namespace ShiftOS.Objects public string GUID { get; set; } public string Contents { get; set; } } + + public class LootInfo + { + public string Filename { get; set; } + public string ResourceId { get; set; } + public int Rarity { get; set; } + } + + public class Loot + { + public Loot(LootInfo info, byte[] data) + { + Data = data; + Info = info; + } + + public LootInfo Info { get; private set; } + public byte[] Data { get; private set; } + } } |
