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

#ifndef Player_hpp
#define Player_hpp

#include <stdio.h>
#include "Creature.hpp"

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

#endif /* Player_hpp */