blob: 359ce243d4f0614cfe563b1a41d317a235d25a71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef __JE_SPRITE_BATCH_H
#define __JE_SPRITE_BATCH_H
namespace JinEngine
{
namespace Graphics
{
///
/// For reducing draw call.
///
class SpriteBatch
{
};
} // namespace Graphics
} // namespace JinEngine
#endif
|