summaryrefslogtreecommitdiff
path: root/player.h
diff options
context:
space:
mode:
authorVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
committerVegard Storheil Eriksen <zyp@jvnv.net>2010-05-21 19:24:51 +0200
commit267bebfc227c94f543a39e2aa75fb101bc06932e (patch)
tree40ad8057634ba80aa19c61f57884982fd59f6b56 /player.h
parent88b1e9e505dad78fd2c3ff927495d322b11491ca (diff)
Moved engine-sources to seperate subdirectory.
Diffstat (limited to 'player.h')
-rw-r--r--player.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/player.h b/player.h
deleted file mode 100644
index 41f1928..0000000
--- a/player.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#ifndef _PLAYER_H_
-#define _PLAYER_H_
-
-#include "texture.h"
-
-class Player {
- protected:
- float x, y, move_factor, focus_factor;
- Texture *texture;
-
- public:
- Player();
- void draw();
- void update();
-};
-
-#endif