Add header for future CMP reading
This commit is contained in:
parent
a51734a220
commit
0860547c54
1 changed files with 18 additions and 0 deletions
18
include/cmpparser.h
Normal file
18
include/cmpparser.h
Normal 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);
|
Reference in a new issue