petpet 2.4.3

Pet-pet generator in Rust. Translated from https://github.com/camprevail/pet-pet-gif.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(not(feature = "bundle_raw_hands"))]
pub static HANDS_WEBP: [&[u8]; 5] = [
    include_bytes!("res/0.webp"),
    include_bytes!("res/1.webp"),
    include_bytes!("res/2.webp"),
    include_bytes!("res/3.webp"),
    include_bytes!("res/4.webp"),
];

#[cfg(feature = "bundle_raw_hands")]
pub static HANDS_RAW: [&[u8]; 5] = [
    include_bytes!(concat!(env!("OUT_DIR"), "/0.raw")),
    include_bytes!(concat!(env!("OUT_DIR"), "/1.raw")),
    include_bytes!(concat!(env!("OUT_DIR"), "/2.raw")),
    include_bytes!(concat!(env!("OUT_DIR"), "/3.raw")),
    include_bytes!(concat!(env!("OUT_DIR"), "/4.raw")),
];