Files @ r7409:81de3718d19a
Branch filter:

Location: cpp/openttd-patchpack/source/src/spriteloader/grf.hpp

truelight
(svn r10782) -Fix: wrongly places #endif a long time ago broke WinCE compiling for sure
/* $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, const char *filename, uint32 file_pos);
};

#endif /* SPRITELOADER_GRF_HPP */