-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔥🔥🔥🔥🔥
- Loading branch information
Showing
30 changed files
with
525 additions
and
1,085 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,17 @@ | ||
[package] | ||
name = "zenyx" | ||
name = "engine" | ||
version = "0.1.0" | ||
edition = "2021" | ||
edition = "2024" | ||
|
||
[dependencies] | ||
anyhow = "1.0.93" | ||
chrono = "0.4.38" | ||
colored = "2.1.0" | ||
lazy_static = "1.5.0" | ||
anyhow = "1.0.94" | ||
chrono = "0.4.39" | ||
colored = "2.2.0" | ||
|
||
lazy_static.workspace = true | ||
log = "0.4.22" | ||
once_cell = "1.20.2" | ||
parking_lot = "0.12.3" | ||
rand = "0.8.5" | ||
parking_lot.workspace = true | ||
regex = "1.11.1" | ||
rustyline = { version = "15.0.0", features = ["derive", "rustyline-derive"] } | ||
thiserror = "2.0.3" | ||
tokio = { version = "1.41.1", features = ["macros", "rt", "rt-multi-thread"] } | ||
wgpu = "23.0.1" | ||
winit = "0.30.5" | ||
zephyr.workspace = true | ||
plugin_api = { path = "../plugin_api" } | ||
horizon-plugin-api = "0.1.13" | ||
tokio = { version = "1.42.0", features = ["macros", "parking_lot", "rt", "rt-multi-thread"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -81,4 +81,4 @@ impl Log for DynamicLogger { | |
let mut writer = self.writer.lock(); | ||
writer.flush().unwrap(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,3 @@ | ||
pub mod renderer; | ||
pub mod repl; | ||
|
||
use anyhow::Result; | ||
use renderer::App; | ||
use winit::event_loop::{ControlFlow, EventLoop}; | ||
|
||
pub fn init_renderer() -> Result<()> { | ||
let event_loop = EventLoop::new()?; | ||
event_loop.set_control_flow(ControlFlow::Poll); | ||
let mut app = App::default(); | ||
Ok(event_loop.run_app(&mut app)?) | ||
} | ||
pub mod logger; | ||
pub mod splash; |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.