1
0
Fork 0

First commit, world map creation

This commit is contained in:
trotFunky 2019-05-27 13:50:49 +02:00
commit 52a261de58
7 changed files with 176 additions and 0 deletions

14
main.cpp Normal file
View file

@ -0,0 +1,14 @@
#include <iostream>
#include "SFML/Graphics.hpp"
#include "World.h"
int main()
{
std::cout << "Hello, World!" << std::endl;
World world(10,10);
world.setBlock(BlockType::AIR,1,1,8,8);
world.setBlock(BlockType::WALL,4,4,2,2);
std::cout << world << std::endl;
return 0;
}