author | truebrain |
Mon, 23 Jun 2008 13:52:21 +0000 | |
branch | noai |
changeset 11058 | 3305a425f55b |
parent 10776 | 07203fc29812 |
permissions | -rw-r--r-- |
9628 | 1 |
/* $Id$ */ |
2 |
||
10455
22c441f5adf9
(svn r12997) [NoAI] -Sync: with trunk r12895:12996.
rubidium
parents:
9724
diff
changeset
|
3 |
/** @file png.hpp Base for reading files from PNG. */ |
9628 | 4 |
|
5 |
#ifndef SPRITELOADER_PNG_HPP |
|
6 |
#define SPRITELOADER_PNG_HPP |
|
7 |
||
8 |
#include "spriteloader.hpp" |
|
9 |
||
10 |
class SpriteLoaderPNG : 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 |
*/ |
|
10776 | 15 |
bool LoadSprite(SpriteLoader::Sprite *sprite, uint8 file_slot, size_t file_pos); |
9628 | 16 |
}; |
17 |
||
18 |
#endif /* SPRITELOADER_PNG_HPP */ |