uh, left this project for a few days so idk

This commit is contained in:
LunarAkai 2025-07-31 22:04:00 +02:00
commit 168cdd6cf8
18 changed files with 76 additions and 11 deletions

View file

@ -1 +1 @@
# MoonhareEngine
# MoonhareEngine

View file

@ -1,3 +1,21 @@
//! Moonhare Game Engine
pub use moonhare_internal::*;
pub const ENGINE_NAME: &str = "Moonhare Engine";
pub const ENGINE_NAME: &str = "Moonhare Engine";
/*
Game: (not a node, only one game may exist)
- Window(s) (node)
- Scene1 (node)
- Node
- Node
- ...
- Scene2 (node)
- ...
------------------
Node
- Optional<Components>
- Optional<Script>
-----------------------
*/