├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── assets ├── retro-gaming.ttf └── snake.gif └── src ├── colors.rs ├── draw.rs ├── game.rs ├── main.rs ├── physics.rs └── snake.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | .DS_Store -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/README.md -------------------------------------------------------------------------------- /assets/retro-gaming.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/assets/retro-gaming.ttf -------------------------------------------------------------------------------- /assets/snake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/assets/snake.gif -------------------------------------------------------------------------------- /src/colors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/colors.rs -------------------------------------------------------------------------------- /src/draw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/draw.rs -------------------------------------------------------------------------------- /src/game.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/game.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/physics.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/physics.rs -------------------------------------------------------------------------------- /src/snake.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maras-archive/rsnake/HEAD/src/snake.rs --------------------------------------------------------------------------------