fix bevy imports. windows_settings.rs example (#9547)
# Objective In #9355 was added an import using bevy_internal. This change the import to use `bevy::window` instead of a `bevy_internal` to run the example outside of the bevy repo.
This commit is contained in:
parent
ebdf5063df
commit
427ba3074a
@ -4,9 +4,8 @@
|
||||
use bevy::{
|
||||
diagnostic::{FrameTimeDiagnosticsPlugin, LogDiagnosticsPlugin},
|
||||
prelude::*,
|
||||
window::{CursorGrabMode, PresentMode, WindowLevel, WindowTheme},
|
||||
window::{CursorGrabMode, PresentMode, PrimaryWindow, WindowLevel, WindowTheme},
|
||||
};
|
||||
use bevy_internal::window::PrimaryWindow;
|
||||
|
||||
fn main() {
|
||||
App::new()
|
||||
|
Loading…
Reference in New Issue
Block a user