Skip to content

Commit

Permalink
Merge pull request #1 from vita-rust/sdl-example
Browse files Browse the repository at this point in the history
Added sdl2 game of life example
  • Loading branch information
nikarh authored Oct 14, 2023
2 parents 8dde8d0 + f226fb2 commit 1b904d4
Show file tree
Hide file tree
Showing 3 changed files with 426 additions and 32 deletions.
89 changes: 57 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions crates/3-sdl/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[package]
name = "vita-example-sdl"
version = "0.1.0"
edition = "2021"

license = "MIT OR Apache-2.0"
repository = "https://github.com/vita-rust/examples"
homepage = "https://github.com/vita-rust/examples/crates/3-sdl"

description = "An adapted Sdl2 game of life example (https://github.com/Rust-SDL2/rust-sdl2/blob/master/examples/game-of-life.rs)"

[dependencies]
sdl2 = { version = "0.35.2", features = ["use-pkgconfig"] }

[package.metadata.vita]
title_id = "RUSTTEST3"
title_name = "Rust sdl2 test"
Loading

0 comments on commit 1b904d4

Please sign in to comment.