diff -r 0a0a094fb9f1 -r 439563b70fd3 src/spriteloader/grf.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/spriteloader/grf.hpp Mon Jun 11 11:50:49 2007 +0000 @@ -0,0 +1,18 @@ +/* $Id$ */ + +/** @file grf.hpp */ + +#ifndef SPRITELOADER_GRF_HPP +#define SPRITELOADER_GRF_HPP + +#include "spriteloader.hpp" + +class SpriteLoaderGrf : public SpriteLoader { +public: + /** + * Load a sprite from the disk and return a sprite struct which is the same for all loaders. + */ + bool LoadSprite(SpriteLoader::Sprite *sprite, uint32 file_pos); +}; + +#endif /* SPRITELOADER_GRF_HPP */