DuPr/include/Chaser.hpp
Yakudami fd2f7f494a :|
2019-06-13 08:56:12 +02:00

11 lines
170 B
C++

#ifndef _CHASER_HPP_
#define _CHASER_HPP_
class Chaser: public Enemy
{
public:
Chaser(int posx, int posy);
virtual void action(int px, int py);
};
#endif