Skip to content

Commit

Permalink
mrrrrp nya?
Browse files Browse the repository at this point in the history
  • Loading branch information
Seven Of Aces committed Dec 13, 2024
1 parent 018312c commit 08681dc
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ edition = "2021"
publish = false

[dependencies]
bevy = { version = "0.14", features = [] }
bevy = { version = "0.14", features = ["dynamic_linking"] }
1 change: 1 addition & 0 deletions src/data/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pub mod world;
Empty file added src/data/world.rs
Empty file.
2 changes: 2 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@

pub mod data;
pub mod runtime;
5 changes: 4 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
use bevy::prelude::*;
use project_starlight::runtime;

fn main() {
println!("Hello, world!");
runtime::Runtime::new().run();
}
13 changes: 13 additions & 0 deletions src/runtime/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
struct Runtime {

}

impl Runtime {
pub fn new() -> Runtime {
Runtime {}
}

pub fn run(&self) {
println!("Running runtime");
}
}

0 comments on commit 08681dc

Please sign in to comment.