12 lines
114 B
C++
12 lines
114 B
C++
#ifndef ENEMY_H
|
|
#define ENEMY_H
|
|
|
|
class Enemy
|
|
{
|
|
public:
|
|
Enemy();
|
|
bool Alive() const { return false; }
|
|
};
|
|
|
|
#endif
|