├── LICENSE ├── README.md ├── bin └── textures │ ├── _ta_0textures.png │ ├── sprites │ ├── _ta_0sprites.png │ └── sprites.mtpf │ └── textures.mtpf ├── screenshot.png └── source ├── Example.cpp ├── Log.h ├── Sprite.h ├── SpriteBatch.h ├── Texture.h └── TextureAtlas.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/README.md -------------------------------------------------------------------------------- /bin/textures/_ta_0textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/bin/textures/_ta_0textures.png -------------------------------------------------------------------------------- /bin/textures/sprites/_ta_0sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/bin/textures/sprites/_ta_0sprites.png -------------------------------------------------------------------------------- /bin/textures/sprites/sprites.mtpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/bin/textures/sprites/sprites.mtpf -------------------------------------------------------------------------------- /bin/textures/textures.mtpf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/bin/textures/textures.mtpf -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/screenshot.png -------------------------------------------------------------------------------- /source/Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/Example.cpp -------------------------------------------------------------------------------- /source/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/Log.h -------------------------------------------------------------------------------- /source/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/Sprite.h -------------------------------------------------------------------------------- /source/SpriteBatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/SpriteBatch.h -------------------------------------------------------------------------------- /source/Texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/Texture.h -------------------------------------------------------------------------------- /source/TextureAtlas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricanteja/Moony-SpriteBatch/HEAD/source/TextureAtlas.h --------------------------------------------------------------------------------