DuPr/include/Chaser.hpp

11 lines
170 B
C++
Raw Normal View History

2019-06-13 08:56:12 +02:00
#ifndef _CHASER_HPP_
#define _CHASER_HPP_
class Chaser: public Enemy
{
public:
Chaser(int posx, int posy);
virtual void action(int px, int py);
};
#endif