initial bevy

This commit is contained in:
2026-08-10 23:18:53 -05:00
commit 962ba52e8e
4 changed files with 6057 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
/target
Generated
+6027
View File
File diff suppressed because it is too large Load Diff
+17
View File
@@ -0,0 +1,17 @@
[package]
name = "tt_net_test"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.19.0"
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
[profile.release]
codegen-units = 1
lto = "thin"
+12
View File
@@ -0,0 +1,12 @@
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_systems(Startup, setup)
.run();
}
fn setup(mut commands: Commands) {
commands.spawn(Camera2d);
}