chore: removed a name collision in the prelude

This commit is contained in:
lisk77 2025-05-01 12:21:09 +02:00
parent 6d0e5aef1e
commit ae5177a025

View file

@ -15,8 +15,19 @@ pub mod prelude {
pub use comet_input::keyboard::Key; pub use comet_input::keyboard::Key;
pub use winit_input_helper::WinitInputHelper as InputManager; pub use winit_input_helper::WinitInputHelper as InputManager;
pub use comet_log::*; pub use comet_log::*;
pub use comet_colors::*; pub use comet_colors::{
pub use comet_colors::Color; LinearRgba,
sRgba,
Hsla,
Hsva,
Hwba,
Laba,
Lcha,
Oklaba,
Oklcha,
Xyza,
Color as CometColor
};
pub use comet_ecs::*; pub use comet_ecs::*;
pub use comet_math::*; pub use comet_math::*;
} }