summaryrefslogtreecommitdiff
path: root/include/sprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/sprite.h')
-rw-r--r--include/sprite.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/sprite.h b/include/sprite.h
index 176f793..6263ada 100644
--- a/include/sprite.h
+++ b/include/sprite.h
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: sprite.h,v 1.13 2004-11-27 21:48:01 pixel Exp $ */
+/* $Id: sprite.h,v 1.14 2006-10-28 16:50:46 pixel Exp $ */
#ifndef __SPRITE_H__
#define __SPRITE_H__
@@ -26,7 +26,7 @@
#include <Exceptions.h>
#include <Handle.h>
#include <mcolor.h>
-#include <texture.h>
+#include <Texture.h>
namespace mogltk {
class Sprite : public Base {
@@ -48,15 +48,15 @@ namespace mogltk {
TexList(int);
virtual ~TexList();
Sprite * sprheader;
- const texture * GetTex() const;
- texture * GetTex();
+ const Texture * GetTex() const;
+ Texture * GetTex();
static const TexList * GetHead();
const TexList * GetNext() const;
TexList * GetNext();
void Bind() const;
SDL_Surface * GetSurface();
private:
- texture * tex;
+ Texture * tex;
static TexList * header;
TexList * next, * prev;
};