2016-03-14 18:28:18 +00:00
|
|
|
#ifndef DEF_XMARIOBRICK_H
|
|
|
|
|
|
|
|
#define DEF_XMARIOBRICK_H
|
|
|
|
|
|
|
|
/* [DEF] Definition de la classe
|
|
|
|
=========================================================*/
|
2016-03-17 09:17:21 +00:00
|
|
|
class xMarioBrick : public xMarioBreakableBloc{
|
2016-03-14 18:28:18 +00:00
|
|
|
|
|
|
|
public:
|
2016-03-16 11:08:22 +00:00
|
|
|
xMarioBrick(xManager *m, int x, int y, int nb=1);
|
|
|
|
|
|
|
|
void active(bool active); // Active ou non le bloc
|
2016-03-14 18:28:18 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|