This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/ShiftOS.Frontend/Hacking/PayloadFunc.cs
2017-07-27 19:37:00 -07:00

24 lines
517 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ShiftOS.Engine;
namespace ShiftOS.Frontend
{
class PayloadFunc
{
public static void DoHackFunction(int function)
{
switch (function)
{
default:
break;
case 1:
Hacking.CurrentHackable.DoConnectionTimeout = false;
break;
}
}
}
}