16 lines
323 B
C++
16 lines
323 B
C++
#ifndef PLAYER_H
|
|
#define PLAYER_H
|
|
|
|
#include "commons.hpp"
|
|
#include "compas.hpp"
|
|
#include "enemy.hpp"
|
|
class Player : public Enemy {
|
|
public:
|
|
Player();
|
|
bool update(float deltaTime, sf::RenderWindow *window) final override;
|
|
bool event(sf::Event e) final override;
|
|
private:
|
|
Compas compas;
|
|
};
|
|
|
|
#endif // PLAYER_H
|