mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 02:12:14 +00:00
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using ShiftOS.Objects;
|
|
using ShiftOS.Engine;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace ShiftOS.Frontend
|
|
{
|
|
public class HackableProvider : IHackableProvider
|
|
{
|
|
public Hackable[] GetHackables()
|
|
{
|
|
return JsonConvert.DeserializeObject<Hackable[]>(Properties.Resources.Hackables);
|
|
}
|
|
|
|
public Exploit[] GetExploits()
|
|
{
|
|
return JsonConvert.DeserializeObject<Exploit[]>(Properties.Resources.Exploits);
|
|
}
|
|
|
|
public Payload[] GetPayloads()
|
|
{
|
|
return JsonConvert.DeserializeObject<Payload[]>(Properties.Resources.Payloads);
|
|
}
|
|
|
|
public Port[] GetPorts()
|
|
{
|
|
return JsonConvert.DeserializeObject<Port[]>(Properties.Resources.Ports);
|
|
}
|
|
|
|
public byte[] GetLootFromResource(string resId)
|
|
{
|
|
return new byte[] { 0xDE, 0xAD, 0xBE, 0xEF }; //nyi
|
|
}
|
|
|
|
public Loot[] GetLoot()
|
|
{
|
|
return JsonConvert.DeserializeObject<Loot[]>(Properties.Resources.LootInfo);
|
|
}
|
|
}
|
|
}
|