14 lines
201 B
C++
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
|