Skip to content

Commit f226fb2

Browse files
committed
Added sdl2 game of life example
1 parent 8dde8d0 commit f226fb2

File tree

3 files changed

+426
-32
lines changed

3 files changed

+426
-32
lines changed

Cargo.lock

Lines changed: 57 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/3-sdl/Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[package]
2+
name = "vita-example-sdl"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
license = "MIT OR Apache-2.0"
7+
repository = "https://github.com/vita-rust/examples"
8+
homepage = "https://github.com/vita-rust/examples/crates/3-sdl"
9+
10+
description = "An adapted Sdl2 game of life example (https://github.com/Rust-SDL2/rust-sdl2/blob/master/examples/game-of-life.rs)"
11+
12+
[dependencies]
13+
sdl2 = { version = "0.35.2", features = ["use-pkgconfig"] }
14+
15+
[package.metadata.vita]
16+
title_id = "RUSTTEST3"
17+
title_name = "Rust sdl2 test"

0 commit comments

Comments
 (0)