]> git.tdb.fi Git - libs/game.git/blobdiff - source/game/resources.h
Add resource container references to Director and Stage
[libs/game.git] / source / game / resources.h
diff --git a/source/game/resources.h b/source/game/resources.h
new file mode 100644 (file)
index 0000000..b8f10b0
--- /dev/null
@@ -0,0 +1,27 @@
+#ifndef MSP_GAME_RESOURCES_H_
+#define MSP_GAME_RESOURCES_H_
+
+#include <msp/datafile/collection.h>
+#include <msp/datafile/directorysource.h>
+#include <msp/datafile/packsource.h>
+
+namespace Msp::Game {
+
+class Resources: virtual public DataFile::Collection
+{
+public:
+};
+
+class ApplicationResources: public Resources
+{
+private:
+       DataFile::DirectorySource dir_src;
+       DataFile::PackSource pack_src;
+
+public:
+       ApplicationResources();
+};
+
+} // namespace Msp::Game
+
+#endif