This repository has been archived on 2022-12-14. You can view files and clone it, but cannot push or open issues or pull requests.
WaveGGJ17/VaporWaveWars/iaenemy.hpp
2017-01-21 18:00:31 +01:00

16 lines
293 B
C++

#ifndef IAENEMY_H
#define IAENEMY_H
#include "actor.hpp"
class IaEnemy : public Actor {
public:
IaEnemy();
IaEnemy(int player);
bool event(sf::Event e, bool def) final override;
protected:
bool updateLogic(float deltaTime, sf::RenderWindow *window);
};
#endif // IAENEMY_H