CPP-RPG/Enemy.h

12 lines
114 B
C
Raw Normal View History

2021-01-24 14:40:11 -05:00
#ifndef ENEMY_H
#define ENEMY_H
class Enemy
{
public:
Enemy();
bool Alive() const { return false; }
};
#endif