Newer
Older
//
// 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){
}