lab.cpp/SDL#4/xMario/xMarioBloc.h

18 lines
349 B
C
Raw Permalink Normal View History

2016-03-13 14:22:14 +00:00
#ifndef DEF_XMARIOBLOC_H
#define DEF_XMARIOBLOC_H
/* [DEF] Definition de la classe
=========================================================*/
class xMarioBloc : public xSpriteGroup{
public:
xMarioBloc(xManager *m, SDL_Rect rect);
private:
xManager *_manager;
SDL_Texture *_spritesheet; // Contiendra la texture
};
#endif