29 lines
429 B
C++
29 lines
429 B
C++
/**
|
|
* @author Edouard DUPIN
|
|
*
|
|
* @copyright 2011, Edouard DUPIN, all right reserved
|
|
*
|
|
* @license BSD v3 (see license file)
|
|
*/
|
|
|
|
#ifndef __EWOL_COMPOSITING_SPRITE_H__
|
|
#define __EWOL_COMPOSITING_SPRITE_H__
|
|
|
|
#include <ewol/debug.h>
|
|
#include <ewol/compositing/Compositing.h>
|
|
#include <ewol/renderer/ResourceManager.h>
|
|
|
|
namespace ewol
|
|
{
|
|
class Sprite : public ewol::Compositing
|
|
{
|
|
protected:
|
|
|
|
public:
|
|
|
|
};
|
|
};
|
|
|
|
#endif
|
|
|