summaryrefslogtreecommitdiff
path: root/inc/resource.h
diff options
context:
space:
mode:
Diffstat (limited to 'inc/resource.h')
-rw-r--r--inc/resource.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/inc/resource.h b/inc/resource.h
new file mode 100644
index 0000000..463f355
--- /dev/null
+++ b/inc/resource.h
@@ -0,0 +1,12 @@
+#ifndef resource_h
+#define resource_h
+
+#include "entity.h"
+
+class Resource: public Entity
+{
+ public:
+ Resource(Window m, std::string s);
+};
+
+#endif