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.
20 lines
322 B
20 lines
322 B
6 months ago
|
#ifndef ENEMYINSECT_H
|
||
|
#define ENEMYINSECT_H
|
||
|
|
||
|
#include"enemybase.h"
|
||
|
|
||
|
|
||
|
class enemyInsect : public EnemyBase
|
||
|
{
|
||
|
public:
|
||
|
enemyInsect(Player* _player, int _HP, int _AttackPoint, qreal _Speed, int _exp);
|
||
|
|
||
|
void setMirrorPixmap();
|
||
|
|
||
|
private:
|
||
|
//QPixmap pix(":/roles/img/roles/chimera1.png");
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // ENEMYINSECT_H
|