DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: d7aff545521c3ec78c932d491e880ccd42c3a149 deck-builder/client/src/plugins/menu/ui/browse.rs -rw-r--r-- 414 bytes
d7aff545 — skye feat: flake.nix for api, improved dev-launch.sh 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * This file is part of laurelin_client
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy::prelude::*;
use bevy_egui::egui;

use crate::{util::egui::password, plugins::LoginCallEvent};

use super::{MenuData, MenuUIState};

pub fn view(
    ui: &mut egui::Ui,
    data: &mut MenuData,
) {
    ui.label("browse");
}