CardGame
Rogue-like card videogame
Loading...
Searching...
No Matches
bandits.h
Go to the documentation of this file.
1#ifndef BANDITS_H
2#define BANDITS_H
3
4#include "enemy.h"
5
6class Bandits : public Enemy
7{
8 public:
9 Bandits(int hp = 30);
10
11 private:
12};
13#endif // BANDITS_H
Definition: bandits.h:7
Base class for enemies with a predefined move sequence.
Definition: enemy.h:22