Skip to content
Snippets Groups Projects
Player.cpp 262 B
Newer Older
William Meaton's avatar
William Meaton committed
//
//  Player.cpp
//  LabOF1
//
//  Created by William Meaton on 09/11/2015.
//
//

#include "Player.hpp"

Player::Player(int x, int y, int movementSpeed, int health, bool visible, std::string imgPath) : Creature(x, y, movementSpeed, health, visible, imgPath){
}