bettola/src/game/player.cpp

12 lines
154 B
C++

#include "player.h"
Player::Player(void) :
_x(400.0f),
_y(300.0f),
_width(50.0f),
_height(50.0f) {}
void Player::update(double dt) {
}