]> git.tdb.fi Git - libs/game.git/blob - source/game/resources.h
Add resource container references to Director and Stage
[libs/game.git] / source / game / resources.h
1 #ifndef MSP_GAME_RESOURCES_H_
2 #define MSP_GAME_RESOURCES_H_
3
4 #include <msp/datafile/collection.h>
5 #include <msp/datafile/directorysource.h>
6 #include <msp/datafile/packsource.h>
7
8 namespace Msp::Game {
9
10 class Resources: virtual public DataFile::Collection
11 {
12 public:
13 };
14
15 class ApplicationResources: public Resources
16 {
17 private:
18         DataFile::DirectorySource dir_src;
19         DataFile::PackSource pack_src;
20
21 public:
22         ApplicationResources();
23 };
24
25 } // namespace Msp::Game
26
27 #endif