CPP-RPG/Enemy.h

12 lines
114 B
C++

#ifndef ENEMY_H
#define ENEMY_H
class Enemy
{
public:
Enemy();
bool Alive() const { return false; }
};
#endif