From 45e08ccde95c84932557701235558e72cdc95f1b Mon Sep 17 00:00:00 2001 From: pixel Date: Sat, 28 Oct 2006 16:50:46 +0000 Subject: Fixing caps in class names. --- include/sprite.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/sprite.h') 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 #include #include -#include +#include 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; }; -- cgit v1.2.3