Expose CustomCursorUrl (#19006)

# Objective

`CustomCursorUrl` is inaccessible.

## Solution

Expose `CustomCursorUrl`.
This commit is contained in:
UkoeHB 2025-05-06 00:23:48 -05:00 committed by François Mockers
parent f39320d0c7
commit fd5c5e7ced

View File

@ -39,6 +39,13 @@ use tracing::warn;
#[cfg(feature = "custom_cursor")] #[cfg(feature = "custom_cursor")]
pub use crate::custom_cursor::{CustomCursor, CustomCursorImage}; pub use crate::custom_cursor::{CustomCursor, CustomCursorImage};
#[cfg(all(
feature = "custom_cursor",
target_family = "wasm",
target_os = "unknown"
))]
pub use crate::custom_cursor::CustomCursorUrl;
pub(crate) struct CursorPlugin; pub(crate) struct CursorPlugin;
impl Plugin for CursorPlugin { impl Plugin for CursorPlugin {