summaryrefslogtreecommitdiffstats
path: root/native/src/window/icon.rs
blob: e89baf03ebe6eab3ef9e3a9e2a7bd8eda9082501 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//! Attach an icon to the window of your application.

/// The icon of a window.
#[derive(Debug, Clone)]
pub struct Icon {
    /// TODO(derezzedex)
    pub rgba: Vec<u8>,
    /// TODO(derezzedex)
    pub width: u32,
    /// TODO(derezzedex)
    pub height: u32,
}