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