project-wormhole-esm 0.1.0

ESM file format parser for Project Wormhole
Documentation
use crate::dev::*;


#[derive(Debug, NomLE)]
pub struct Color4 {
    pub r: u8,
    pub g: u8,
    pub b: u8,
    pub a: u8
}


#[derive(Debug, NomLE)]
pub struct Color3 {
    pub r: u8,
    pub g: u8,
    pub b: u8
}


#[derive(Debug, NomLE)]
pub struct Color2 {
    pub r: u8,
    pub g: u8
}