beetmash_core 0.0.6-rc.2

The number one bevy scene registry.
1
2
3
4
5
6
7
8
use crate::prelude::*;
use bevy::prelude::*;


pub fn ui_terminal_input(commands: Commands) {
	spawn_ui_terminal(commands, true);
}
pub fn ui_terminal(commands: Commands) { spawn_ui_terminal(commands, false); }