Init branch

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2025-11-22 20:31:38 +01:00
parent 6fe5bb6d60
commit 435d6c15be
8 changed files with 157 additions and 0 deletions

8
engine/Cargo.toml Normal file
View File

@@ -0,0 +1,8 @@
[package]
name = "engine"
version = "0.1.0"
edition = "2024"
[dependencies]
jack = "0.13.3"
lib = { path = "../lib/" }

5
engine/src/main.rs Normal file
View File

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