mirror of
https://git.alee14.me/shiftos-archive/ShiftOS_TheReturn.git
synced 2025-01-23 02:12:14 +00:00
25 lines
517 B
C#
25 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;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|