This commit is contained in:
Crispy 2024-04-29 21:40:22 +02:00
commit b62f3a016d
8 changed files with 4045 additions and 0 deletions

10
uscope/Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "uscope"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
petri = { path = "../petri" }
bevy = { version = "0.13", features = ["dynamic_linking"] }

3
uscope/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}