7 lines
184 B
Rust
7 lines
184 B
Rust
// Prevents a console window from appearing on Windows in release builds.
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
fn main() {
|
|
psg_launcher_lib::run()
|
|
}
|