DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 7ad0cf1d5bed7109f88768a6f65f16fa53dbe449 deck-builder/sdbclient/src/plugins/menu/play/inlobbyguest.rs -rw-r--r-- 749 bytes
7ad0cf1dJonni Liljamo feat(sdbclient): init new game management UIs 1 year, 8 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * This file is part of sdbclient
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy::prelude::*;
use iyes_loopless::prelude::*;

use belly::prelude::*;

use super::PlayMenuState;

pub fn setup(mut commands: Commands) {
    commands.add(eml! {
        <body>
            <div c:menu>
                <span c:menutitle>
                    "Lobby (Guest)"
                </span>
                <button c:menubutton on:press=connect!(|ctx| {
                    ctx.commands().insert_resource(NextState(PlayMenuState::BrowseGames))
                })>
                    "Back"
                </button>
            </div>
        </body>
    });
}