diff options
Diffstat (limited to 'dev/a4-dance/dance_floor.h')
-rw-r--r-- | dev/a4-dance/dance_floor.h | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/dev/a4-dance/dance_floor.h b/dev/a4-dance/dance_floor.h deleted file mode 100644 index 8d992f4..0000000 --- a/dev/a4-dance/dance_floor.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef DANCE_FLOOR_H_ -#define DANCE_FLOOR_H_ - -#include <mingfx.h> - -#include <vector> - -class DanceFloor { -public: - DanceFloor(float s, int c); - - void Draw(const Matrix4 &modelMatrix, const Matrix4 &viewMatrix, const Matrix4 &projMatrix); - - Color tile_color(int index); - -private: - - float tileSize_; - int tileCount_; - - std::vector< std::vector<Color> > colors_; - - Texture2D tex_; - Mesh floorMesh_; -}; - - -#endif |