10 lines
149 B
C++
10 lines
149 B
C++
//
|
|
// Created by trotfunky on 27/05/19.
|
|
//
|
|
|
|
#include "Player.h"
|
|
|
|
|
|
Player::Player(float x, float y, float alpha) : x(x), y(y), orientation(alpha)
|
|
{}
|
|
|