src/spriteloader/grf.hpp
changeset 6852 439563b70fd3
child 6896 b96972ff7d4d
equal deleted inserted replaced
6851:0a0a094fb9f1 6852:439563b70fd3
       
     1 /* $Id$ */
       
     2 
       
     3 /** @file grf.hpp */
       
     4 
       
     5 #ifndef SPRITELOADER_GRF_HPP
       
     6 #define SPRITELOADER_GRF_HPP
       
     7 
       
     8 #include "spriteloader.hpp"
       
     9 
       
    10 class SpriteLoaderGrf : public SpriteLoader {
       
    11 public:
       
    12 	/**
       
    13 	 * Load a sprite from the disk and return a sprite struct which is the same for all loaders.
       
    14 	 */
       
    15 	bool LoadSprite(SpriteLoader::Sprite *sprite, uint32 file_pos);
       
    16 };
       
    17 
       
    18 #endif /* SPRITELOADER_GRF_HPP */