aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/BSODCreator.cs
blob: eb9c9a54a95a3160da2966883cd22b64af712f07 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using TimeHACK.Engine.Template;

namespace TimeHACK.Engine
{
    public class BSODCreator
    {
        public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();

        public Win9XBSOD throw9XBSOD(bool except, int type)
        {
            return null;
        }
    }
}