mirror of
https://github.com/bevyengine/bevy
synced 2024-11-22 12:43:34 +00:00
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
1 changed files with 1 additions and 2 deletions
|
@ -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 a new issue