summaryrefslogtreecommitdiffhomepage
path: root/nGenEx/Res.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'nGenEx/Res.cpp')
-rw-r--r--nGenEx/Res.cpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/nGenEx/Res.cpp b/nGenEx/Res.cpp
new file mode 100644
index 0000000..60903be
--- /dev/null
+++ b/nGenEx/Res.cpp
@@ -0,0 +1,28 @@
+/* Project nGenEx
+ Destroyer Studios LLC
+ Copyright © 1997-2004. All Rights Reserved.
+
+ SUBSYSTEM: nGenEx.lib
+ FILE: Res.cpp
+ AUTHOR: John DiCamillo
+
+
+ OVERVIEW
+ ========
+ Abstract Resource class
+*/
+
+#include "MemDebug.h"
+#include "Res.h"
+
+// +--------------------------------------------------------------------+
+
+static int RESOURCE_KEY = 1;
+
+Resource::Resource()
+ : id((HANDLE) RESOURCE_KEY++)
+{ }
+
+Resource::~Resource()
+{ }
+