You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
278 B
21 lines
278 B
6 months ago
|
#ifndef ENEMYBIG_H
|
||
|
#define ENEMYBIG_H
|
||
|
|
||
|
#include"enemybase.h"
|
||
|
|
||
|
|
||
|
class enemyBig : public EnemyBase
|
||
|
{
|
||
|
public:
|
||
|
enemyBig(Player* _player, int _HP, int _AttackPoint, qreal _Speed, int _exp);
|
||
|
|
||
|
void setMirrorPixmap();
|
||
|
|
||
|
void startSkill();
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // ENEMYBIG_H
|