aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Engine/BSODCreator.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-04-12 22:58:15 -0400
committerGitHub <[email protected]>2017-04-12 22:58:15 -0400
commit4cc2631a033d2bfb7a7e926f9b17d85862c2eea3 (patch)
tree2f5f87e06eff4596229d1d20182d46ac5c329d46 /TimeHACK.Engine/BSODCreator.cs
parent84d4b47b35294d7aa8c1127e609e057d574a993d (diff)
parentf1e0c8f75de4a5086ff955789e9397696df25199 (diff)
downloadhistacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.tar.gz
histacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.tar.bz2
histacom2-4cc2631a033d2bfb7a7e926f9b17d85862c2eea3.zip
Merge pull request #42 from lempamo/master
Master
Diffstat (limited to 'TimeHACK.Engine/BSODCreator.cs')
-rw-r--r--TimeHACK.Engine/BSODCreator.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/TimeHACK.Engine/BSODCreator.cs b/TimeHACK.Engine/BSODCreator.cs
new file mode 100644
index 0000000..eb9c9a5
--- /dev/null
+++ b/TimeHACK.Engine/BSODCreator.cs
@@ -0,0 +1,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;
+ }
+ }
+}