Archived
1
Fork 0

Add header for future CMP reading

This commit is contained in:
Joshua Goins 2022-05-04 15:54:16 -04:00
parent a51734a220
commit 0860547c54

18
include/cmpparser.h Normal file
View file

@ -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);