summaryrefslogtreecommitdiffstats
path: root/engine/include/exceptions/forcequit.h
diff options
context:
space:
mode:
Diffstat (limited to 'engine/include/exceptions/forcequit.h')
-rw-r--r--engine/include/exceptions/forcequit.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/engine/include/exceptions/forcequit.h b/engine/include/exceptions/forcequit.h
new file mode 100644
index 0000000..7b2b324
--- /dev/null
+++ b/engine/include/exceptions/forcequit.h
@@ -0,0 +1,11 @@
+#ifndef __FORCE_QUIT_H__
+#define __FORCE_QUIT_H__
+
+struct ForceQuit
+{
+ const char * reason;
+
+ ForceQuit(const char *reason) : reason(reason) {}
+};
+
+#endif