684f07746d
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
397 B
Rust
17 lines
397 B
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(
|
|
DefaultPlugins.set(WindowPlugin {
|
|
primary_window: Some(Window {
|
|
title: "Solitaire Quest".into(),
|
|
resolution: (1280.0, 800.0).into(),
|
|
..default()
|
|
}),
|
|
..default()
|
|
}),
|
|
)
|
|
.run();
|
|
}
|