mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
8 lines
129 B
Rust
8 lines
129 B
Rust
#[derive(Clone)]
|
|
pub enum TextureDownloadState {
|
|
Downloading,
|
|
Downloaded,
|
|
Loaded(egui::TextureHandle),
|
|
Failed,
|
|
}
|