/* * This file is part of laurelin/client * Copyright (C) 2023 Jonni Liljamo * * Licensed under GPL-3.0-only. * See LICENSE for licensing information. */ use bevy::ecs::system::ResMut; use bevy_inspector_egui::bevy_egui::{egui, EguiContext}; use crate::util::egui::menuwindow; pub fn ui(mut egui_context: ResMut) { menuwindow( egui_context.ctx_mut(), "Laurelin", &egui::Vec2::new(400., 600.), |ui| { if ui.button("Play").clicked() { // } if ui.button("Account").clicked() { // } if ui.button("Settings").clicked() { // } if ui.button("Quit").clicked() { // } }, ); }