/* * This file is part of sdbclient * Copyright (C) 2023 Jonni Liljamo * * Licensed under GPL-3.0-only. * See LICENSE for licensing information. */ use bevy::prelude::*; use iyes_loopless::prelude::*; use belly::prelude::*; use super::MenuState; pub(super) fn settings_setup(mut commands: Commands) { commands.add(eml! {
"display"
"audio"
"misc"
}); }