16 lines
331 B
C++
16 lines
331 B
C++
#ifndef DEF_XMARIOBRICK_H
|
|
|
|
#define DEF_XMARIOBRICK_H
|
|
|
|
/* [DEF] Definition de la classe
|
|
=========================================================*/
|
|
class xMarioBrick : public xMarioBreakableBloc{
|
|
|
|
public:
|
|
xMarioBrick(xManager *m, int x, int y, int nb=1);
|
|
|
|
void active(bool active); // Active ou non le bloc
|
|
|
|
};
|
|
|
|
#endif |