DEVELOPMENT ENVIRONMENT

~liljamo/evenstar

evenstar/src/main.rs -rw-r--r-- 617 bytes
57c6038dJonni Liljamo I lost the old commit history... 1 year, 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * This file is part of Evenstar.
 * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com> 
 *
 * See LICENSE for licensing information.
 */

#![forbid(unsafe_code)]
#![cfg_attr(not(debug_assertions), deny(warnings))] // Forbid warnings in release builds
#![warn(clippy::all, rust_2018_idioms)]
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")] // Hide console window in release builds on Windows, this blocks stdout.

mod app;

fn main() {
    let app = app::Evenstar::default();
    let native_options = eframe::NativeOptions::default();
    eframe::run_native(Box::new(app), native_options);
}