~redstrate/libxiv

0860547c54368ab135f6c189d134501635b20b06 — Joshua Goins 1 year, 4 months ago a51734a
Add header for future CMP reading
1 files changed, 18 insertions(+), 0 deletions(-)

A include/cmpparser.h
A include/cmpparser.h => include/cmpparser.h +18 -0
@@ 0,0 1,18 @@
#pragma once

#include "memorybuffer.h"

struct RacialScalingParameter {

};

struct ColorData {
    uint8_t  r, g, b, a;
};

struct CMP {
    std::vector<ColorData> colorPixels;
};

void read_cmp(MemoryBuffer data);
void write_cmp(CMP cmp);
\ No newline at end of file