1
0
Fork 0

First commit, world map creation

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

10
Player.cpp Normal file
View file

@ -0,0 +1,10 @@
//
// Created by trotfunky on 27/05/19.
//
#include "Player.h"
Player::Player(float x, float y, float alpha) : x(x), y(y), orientation(alpha)
{}