mirror of
https://github.com/WerWolv/ImHex-Patterns.git
synced 2026-03-27 23:37:04 -05:00
16 lines
194 B
Rust
16 lines
194 B
Rust
#pragma description Command and Conquer Voxel Palette
|
|
|
|
// Command and conquer palette format
|
|
|
|
struct Color {
|
|
u8 r;
|
|
u8 g;
|
|
u8 b;
|
|
};
|
|
|
|
struct Palette {
|
|
Color colors[256];
|
|
};
|
|
|
|
Palette pal @0x00;
|