Added blocks

This commit is contained in:
2016-06-20 22:35:14 +02:00
parent c6958f2205
commit 0f7895dc09
15 changed files with 192 additions and 37 deletions
+11 -1
View File
@@ -1,5 +1,5 @@
#include "World.h"
#include "Block.h"
World::World()
@@ -10,3 +10,13 @@ World::World()
World::~World()
{
}
void World::draw(void)
{
Block b = Block(Vec3f(0, 0, 0), 1, 3);
b.draw();
}
void World::update(float deltaTime)
{
}