0.1.0-0-pre.2
This commit is contained in:
17
crates/apps/game-reflex-poc-desktop/Cargo.toml
Normal file
17
crates/apps/game-reflex-poc-desktop/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
# file: crates/apps/game-reflex-poc-desktop/Cargo.toml
|
||||
# version: 1
|
||||
|
||||
[package]
|
||||
name = "game-reflex-poc-desktop"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
authors.workspace = true
|
||||
publish.workspace = true
|
||||
|
||||
[dependencies]
|
||||
game-reflex-poc = { path = "../../games/game-reflex-poc" }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
16
crates/apps/game-reflex-poc-desktop/src/main.rs
Normal file
16
crates/apps/game-reflex-poc-desktop/src/main.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
// file: crates/apps/game-reflex-poc-desktop/src/main.rs
|
||||
// version: 1
|
||||
|
||||
#![warn(missing_docs)]
|
||||
#![deny(unreachable_pub)]
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
//! Desktop development runner for the Reflex POC game library.
|
||||
//!
|
||||
//! This binary is intentionally minimal until the executable SDL3 runtime is introduced.
|
||||
|
||||
fn main() {
|
||||
let state = game_reflex_poc::ReflexState::new();
|
||||
println!("Reflex POC desktop runner: score={}", state.score());
|
||||
return;
|
||||
}
|
||||
17
crates/apps/game-snake-poc-desktop/Cargo.toml
Normal file
17
crates/apps/game-snake-poc-desktop/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
# file: crates/apps/game-snake-poc-desktop/Cargo.toml
|
||||
# version: 1
|
||||
|
||||
[package]
|
||||
name = "game-snake-poc-desktop"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
repository.workspace = true
|
||||
authors.workspace = true
|
||||
publish.workspace = true
|
||||
|
||||
[dependencies]
|
||||
game-snake-poc = { path = "../../games/game-snake-poc" }
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
16
crates/apps/game-snake-poc-desktop/src/main.rs
Normal file
16
crates/apps/game-snake-poc-desktop/src/main.rs
Normal file
@@ -0,0 +1,16 @@
|
||||
// file: crates/apps/game-snake-poc-desktop/src/main.rs
|
||||
// version: 1
|
||||
|
||||
#![warn(missing_docs)]
|
||||
#![deny(unreachable_pub)]
|
||||
#![forbid(unsafe_code)]
|
||||
|
||||
//! Desktop development runner for the Snake POC game library.
|
||||
//!
|
||||
//! This binary is intentionally minimal until the executable SDL3 runtime is introduced.
|
||||
|
||||
fn main() {
|
||||
let state = game_snake_poc::SnakeState::new();
|
||||
println!("Snake POC desktop runner: length={}", state.length());
|
||||
return;
|
||||
}
|
||||
Reference in New Issue
Block a user