DuPr/include/Sentry.hpp

14 lines
201 B
C++
Raw Normal View History

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