]> git.tdb.fi Git - libs/demoscene.git/blob - source/resources.h
Initial files lifted from the Skrolliparty 2 demo
[libs/demoscene.git] / source / resources.h
1 #ifndef MSP_DEMOSCENE_RESOURCES_H_
2 #define MSP_DEMOSCENE_RESOURCES_H_
3
4 #include <msp/datafile/directorysource.h>
5 #include <msp/datafile/packsource.h>
6 #include <msp/gl/resources.h>
7
8 class Resources: public Msp::GL::Resources
9 {
10 private:
11         Msp::DataFile::DirectorySource dir_source;
12         Msp::DataFile::PackSource pack_source;
13
14 public:
15         Resources(const std::string &);
16 };
17
18 #endif