aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-10-23 08:44:55 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-10-23 08:44:55 -0400
commit0b5a24d5c3ea48c748cfa28ae258cd65187f9bf1 (patch)
tree5258af77ab83aac298229253fb011f1858962118 /include
parent19ba40a368b06c38365fe861b6de9403044096a7 (diff)
Worked on the new texture library
Diffstat (limited to 'include')
-rw-r--r--include/Texture.h3
-rw-r--r--include/entities.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/include/Texture.h b/include/Texture.h
index 45c8df1..5a08348 100644
--- a/include/Texture.h
+++ b/include/Texture.h
@@ -12,10 +12,11 @@ public:
Texturec(uint amt, ...);
void bindNext();
void bindPrev();
+ void bind(int);
GLuint *image;
-private:
int texState;
+private:
};
diff --git a/include/entities.h b/include/entities.h
index 43e744e..47f7f55 100644
--- a/include/entities.h
+++ b/include/entities.h
@@ -94,7 +94,7 @@ public:
};
class Mob : public Entity{
public:
- Mob();
+ Mob(int);
void wander(int, vec2*);
};