mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-27 23:37:04 -05:00
* patterns: added a few voxel model patterns * patterns: updated qbcl according to https://gist.github.com/tostc/7f049207a2e5a7ccb714499702b5e2fd * readme: added new voxel format petterns to the readme * tests: added vxl test file * ccvxl: updated two fields
14 lines
139 B
Rust
14 lines
139 B
Rust
// Command and conquer palette format
|
|
|
|
struct Color {
|
|
u8 r;
|
|
u8 g;
|
|
u8 b;
|
|
};
|
|
|
|
struct Palette {
|
|
Color colors[256];
|
|
};
|
|
|
|
Palette pal @0x00;
|