frontend-utils: Move player_options up from bundle

This commit is contained in:
Nathan Adams 2024-05-10 09:38:52 +02:00
parent 58a0f03bdf
commit e31bba081e
4 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ use ruffle_core::events::{GamepadButton, KeyCode};
use ruffle_core::{DefaultFont, LoadBehavior, Player, PlayerBuilder, PlayerEvent};
use ruffle_frontend_utils::backends::executor::{AsyncExecutor, PollRequester};
use ruffle_frontend_utils::backends::navigator::ExternalNavigatorBackend;
use ruffle_frontend_utils::bundle::player_options::PlayerOptions;
use ruffle_frontend_utils::bundle::source::BundleSourceError;
use ruffle_frontend_utils::bundle::{Bundle, BundleError};
use ruffle_frontend_utils::content::PlayingContent;
use ruffle_frontend_utils::player_options::PlayerOptions;
use ruffle_render::backend::RenderBackend;
use ruffle_render::quality::StageQuality;
use ruffle_render_wgpu::backend::WgpuRenderBackend;

View File

@ -6,7 +6,6 @@ use crate::parse::ParseWarning;
use std::path::Path;
pub mod info;
pub mod player_options;
pub mod source;
#[derive(Debug, thiserror::Error)]

View File

@ -6,6 +6,7 @@ pub mod write;
pub mod backends;
pub mod content;
pub mod player_options;
use std::borrow::Cow;
use url::Url;