Fix unresolved import in window settings example (#311)

Got an unresolved import of 'bevy_window' with the window settings example. Hopefully this is the correct way to resolve it.
This commit is contained in:
Daniel Jordaan 2020-08-24 08:55:06 +02:00 committed by GitHub
parent 986dd67cc8
commit 8b6556c750
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,5 +1,4 @@
use bevy::prelude::*;
use bevy_window::WindowMode;
use bevy::{prelude::*, window::WindowMode};
/// This example illustrates how to customize the default window settings
fn main() {