Made a Stage! Imported PlaceHolder Graphics!

This commit is contained in:
PlatinumSkink
2015-09-10 21:06:21 +02:00
parent 6a81751e56
commit 16c5d2a40f
11 changed files with 22 additions and 13 deletions
+5 -5
View File
@@ -42,10 +42,10 @@ public:
void Initialize() override;
void CreateBasicLevel(int, int, int, int);
void SaveLevel(int, int, int, int); // Shouldn't be here, but I'm experimenting.
void CreateBasicLevel(int, int, glm::vec2, int);
void SaveLevel(int, int, glm::vec2, int); // Shouldn't be here, but I'm experimenting.
void LoadLevel(char[20]);
void CreateBrick(int, int, int, int);
void CreateBrick(int, int, glm::vec2, int, int);
void ProcessCollision();
void OnEntityRemoved(EntityID entity);
@@ -54,9 +54,9 @@ public:
private:
int numberOfBricks;
int tRows = 8;
int tRows = 7;
int tLines = 8;
int tSpaceBetweenBricks = 2;
glm::vec2 tSpaceBetweenBricks = glm::vec2(2, 0.5);
int tSpaceToEdge = 0;
};