blob: 0d73464005fb5f6392d1eba67e84aa5754326602 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef __LIBJIN_SPRITE_H
#define __LIBJIN_SPRITE_H
namespace jin
{
namespace graphics
{
/* just like texture but with x,y */
class Sprite
{
};
}
}
#endif
|