DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 484af3a9e3c99873ccc0b87dfdbc42f90d7d7ad5 deck-builder/client/src/main.rs -rw-r--r-- 558 bytes
484af3a9Jonni Liljamo feat: init bevy 1 year, 6 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
/*
 * 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::*;

fn main() {
    let mut app = App::new();
    app.add_plugins(DefaultPlugins.set(WindowPlugin {
        primary_window: Some(Window {
            title: String::from("Laurelin Client"),
            ..Default::default()
        }),
        ..Default::default()
    }));

    info!("laurelin client initializing");

    app.run();

    info!("goodbye");
}