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
295 B
21 lines
295 B
6 months ago
|
#ifndef EXPBALL_H
|
||
|
#define EXPBALL_H
|
||
|
#include"gameobject.h"
|
||
|
|
||
|
class ExpBall : public GameObject
|
||
|
{
|
||
|
public:
|
||
|
ExpBall(int _value, QPointF _pos);
|
||
|
~ExpBall() {}
|
||
|
|
||
|
int getVal(){return expValue;}
|
||
|
|
||
|
void expBallMove();
|
||
|
|
||
|
private:
|
||
|
int expValue;
|
||
|
qreal moveSpeed;
|
||
|
};
|
||
|
|
||
|
#endif // EXPBALL_H
|