FieldFile.h 415 B

123456789101112131415161718192021222324
  1. #ifndef FIELD_FILE_H
  2. #define FIELD_FILE_H
  3. #include "common/File.h"
  4. class FieldFile : public File
  5. {
  6. public:
  7. FieldFile( const Ogre::String& file );
  8. FieldFile( File* file );
  9. FieldFile( File* file, const u32 offset, const u32 length );
  10. FieldFile( u8* buffer, const u32 offset, const u32 length );
  11. virtual ~FieldFile();
  12. File* Extract( const int file_number );
  13. };
  14. #endif // FIELD_FILE_H