mirror of https://github.com/Leinnan/doppler.git
18 lines
337 B
Rust
18 lines
337 B
Rust
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
extern crate gl;
|
|
extern crate image;
|
|
extern crate imgui_glfw_rs;
|
|
use human_panic::setup_panic;
|
|
#[macro_use]
|
|
mod gaia;
|
|
mod example_client;
|
|
use crate::gaia::engine::Engine;
|
|
|
|
pub fn main() {
|
|
setup_panic!();
|
|
let mut engine = Engine::default();
|
|
|
|
engine.run();
|
|
}
|