PlayerFile.h 397 B

1234567891011121314151617181920212223
  1. #ifndef PLFILE_H
  2. #define PLFILE_H
  3. #include "common/File.h"
  4. class PlayerFile : public File
  5. {
  6. public:
  7. PlayerFile( const Ogre::String &file );
  8. PlayerFile( File* file );
  9. PlayerFile( File* file, const u32 &offset, const u32 &length );
  10. PlayerFile( u8* buffer, const u32 &offset, const u32 &length );
  11. virtual ~PlayerFile();
  12. private:
  13. void DumpData();
  14. };
  15. #endif // PLFILE_H