1
0
Fork 0
mirror of https://github.com/doukutsu-rs/doukutsu-rs synced 2024-11-04 13:24:16 +00:00

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

View file

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