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

14 lines
201 B
C++

#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