Files
CPP-RPG/Enemy.h
2021-01-24 14:40:11 -05:00

12 lines
114 B
C++

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