mirror of
https://github.com/Noratrieb/game-wip-dontplay.git
synced 2026-01-15 20:25:00 +01:00
10 lines
246 B
Rust
10 lines
246 B
Rust
/// A command that can change application or game state
|
|
pub(crate) enum Cmd {
|
|
/// Quit the application
|
|
QuitApp,
|
|
ToggleFreecam,
|
|
TeleportPlayer {},
|
|
TeleportPlayerSpawn,
|
|
GiveItemByName(),
|
|
}
|
|
pub(crate) type CmdVec = Vec<Cmd>;
|