blob: 7a4e53aa8e57ac93a11e78e28c552298e908f20e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __LIBJIN_SPRITE_H
#define __LIBJIN_SPRITE_H
namespace jin
{
namespace graphics
{
///
/// A sprite is a transformable texture.
///
class Sprite
{
public:
};
}
}
#endif
|