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
405 B
20 lines
405 B
6 months ago
|
#include "enemyinsect.h"
|
||
|
//#include "gamewidget.h"
|
||
|
|
||
|
|
||
|
enemyInsect::enemyInsect(Player *_player, int _HP, int _AttackPoint, qreal _Speed,int _exp)
|
||
|
:EnemyBase(_player,_HP,_AttackPoint,_Speed,_exp)
|
||
|
{
|
||
|
this->setPixmap(QPixmap(":/roles/img/roles/chimera1.png"));
|
||
|
this->setScale(0.15);
|
||
|
//expDropped = 33;
|
||
|
mNo = 1;
|
||
|
}
|
||
|
|
||
|
void enemyInsect::setMirrorPixmap()
|
||
|
{
|
||
|
EnemyBase::setMirrorPixmap();
|
||
|
}
|
||
|
|
||
|
|