feat: basic GUI terminal when pressing F12
This commit is contained in:
parent
bb9bca8ca5
commit
0acbbcf9f6
15 changed files with 808 additions and 826 deletions
|
@ -1,6 +1,22 @@
|
|||
use serde::{Deserialize, Serialize};
|
||||
|
||||
pub mod ecs;
|
||||
pub mod panic;
|
||||
pub mod repl;
|
||||
pub mod splash;
|
||||
|
||||
pub mod render;
|
||||
|
||||
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
|
||||
pub struct EngineState {
|
||||
log_level: LogLevel,
|
||||
}
|
||||
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
|
||||
|
||||
enum LogLevel {
|
||||
Info,
|
||||
Debug,
|
||||
Error,
|
||||
Trace,
|
||||
}
|
||||
impl EngineState {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue