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 02:32:26 +01:00

13 lines
256 B
C++

#ifndef IAENEMY_H
#define IAENEMY_H
#include "enemy.hpp"
class IaEnemy : public Enemy {
public:
IaEnemy();
bool update(float deltaTime, sf::RenderWindow *window) final override;
bool event(sf::Event e) final override;
};
#endif // IAENEMY_H