blob: 2a9bcd7b663b5058bf9f297212a0098af5cf868a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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);
WinXP app = wm.InitXP(Console, "MS-DOS Prompt", null, true, true);
}
}
}
|