aboutsummaryrefslogtreecommitdiffstats
path: root/src/entities.cpp
blob: 5e86b721337e255dbe48a2dd3fab683f59441ea4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <entities.h>

void Entities::spawn(float x, float y){
	loc.x = x;
	loc.y = y;

}

Player::Player(){
	width = 24;
	height = 42;
	speed = 1;
	type = 0;
}

Player::~Player(){}