fey_ase 0.1.2

Aseprite file parser.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use fey_color::Rgba8;

/// User-defined data.
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
pub struct UserData {
    /// The user-data's text.
    pub text: Option<String>,

    /// The user-data's color.
    pub color: Option<Rgba8>,
}