Skip to content

Commit

Permalink
Merge pull request #15 from benfrankel/disable-console
Browse files Browse the repository at this point in the history
Disable console on Windows for release builds
  • Loading branch information
benfrankel committed Jul 4, 2024
2 parents bc4b276 + 11bf27c commit 643a777
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
// workflow treats them as errors, so this allows them throughout the project.
// Feel free to delete this line.
#![allow(clippy::too_many_arguments, clippy::type_complexity)]
// Disable console on Windows for release builds.
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]

use bevy::asset::AssetMetaCheck;
use bevy::prelude::*;
Expand Down

0 comments on commit 643a777

Please sign in to comment.