summaryrefslogtreecommitdiff
path: root/include/sprite.h
diff options
context:
space:
mode:
authorpixel <pixel>2006-10-28 16:50:46 +0000
committerpixel <pixel>2006-10-28 16:50:46 +0000
commit45e08ccde95c84932557701235558e72cdc95f1b (patch)
tree0c318c6f589002a8d486c107519b4cf4fd4be1cb /include/sprite.h
parenta13cd83fb51c2e744b8b80dc26696190ec9bff6d (diff)
Fixing caps in class names.
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;
};