blob: 1abd81187a30e328e80ec9efd80a50942a4e143c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using Histacom2.Engine;
using Histacom2.Engine.Template;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Histacom2.OS.WinXPBad.Story
{
public class Hack4 : object
{
static WindowManager wm = new WindowManager();
public static async void StartObjective()
{
Win95.Win95Apps.WinClassicTerminal Console = new Win95.Win95Apps.WinClassicTerminal(true);
Random r = new Random();
WinClassic app = wm.Init(Console, "MS-DOS Prompt", null, true, true);
}
}
}
|