mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-14 03:58:18 +00:00
19 lines
351 B
C
19 lines
351 B
C
|
#include <stdint.h>
|
||
|
|
||
|
struct DECOMP_SLICE
|
||
|
{
|
||
|
uint16_t offset : 13;
|
||
|
uint16_t length : 3;
|
||
|
};
|
||
|
|
||
|
enum
|
||
|
{
|
||
|
NUM_DECOMP_LENGTHS = 8,
|
||
|
NUM_DECOMPS = 9770,
|
||
|
};
|
||
|
|
||
|
extern const uint8_t decomp_lengths[NUM_DECOMP_LENGTHS];
|
||
|
extern const int32_t decomp_chars[NUM_DECOMPS];
|
||
|
extern const struct DECOMP_SLICE decomp_slices[NUM_DECOMPS];
|
||
|
extern const int32_t decomp_data[];
|