mirror of
https://gitlab.com/Syroot/Worms.git
synced 2025-03-16 07:10:14 +03:00
21 lines
437 B
Plaintext
21 lines
437 B
Plaintext
|
//------------------------------------------------
|
||
|
//--- 010 Editor v10.0.2 Binary Template
|
||
|
//
|
||
|
// File: OW_PAL.bt
|
||
|
// Authors: Syroot
|
||
|
// Version: 0.1.0
|
||
|
// Purpose: Parse Online Worms PAL color palettes.
|
||
|
// Category: Worms
|
||
|
// File Mask: *.pal
|
||
|
// ID Bytes:
|
||
|
// History:
|
||
|
// 0.1.0 2020-06-30 Initial version.
|
||
|
//------------------------------------------------
|
||
|
|
||
|
LittleEndian();
|
||
|
|
||
|
struct Color
|
||
|
{
|
||
|
ubyte r, g, b;
|
||
|
} colors[256];
|