├── .gitignore ├── .travis.yml ├── Cargo.png ├── Cargo.toml ├── LICENSE ├── README.md ├── demo.gif ├── src ├── animation.rs ├── lib.rs ├── scene.rs └── sprite.rs └── tests ├── fake_texture.rs └── lib.rs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/Cargo.png -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/demo.gif -------------------------------------------------------------------------------- /src/animation.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/src/animation.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/scene.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/src/scene.rs -------------------------------------------------------------------------------- /src/sprite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/src/sprite.rs -------------------------------------------------------------------------------- /tests/fake_texture.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/tests/fake_texture.rs -------------------------------------------------------------------------------- /tests/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PistonDevelopers/sprite/HEAD/tests/lib.rs --------------------------------------------------------------------------------