Disable console on Windows release builds

This commit is contained in:
Alula 2020-12-07 00:47:26 +01:00
parent 749684c437
commit 76526df400
No known key found for this signature in database
GPG Key ID: 3E00485503A1D8BA
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
fn main() {
doukutsu_rs::init().unwrap();
}