From cccd3186305915d92b1751dc616979d64116a4aa Mon Sep 17 00:00:00 2001 From: KT Date: Mon, 6 Sep 2021 19:07:33 -0500 Subject: Upload a1 --- dev/a4-dance/dance_floor.h | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 dev/a4-dance/dance_floor.h (limited to 'dev/a4-dance/dance_floor.h') 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 - -#include - -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 > colors_; - - Texture2D tex_; - Mesh floorMesh_; -}; - - -#endif -- cgit v1.2.3