mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-09 03:00:47 +00:00
17 lines
405 B
C
17 lines
405 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "tarray.h"
|
||
|
|
||
|
// This structure is used by BuildTranslations() to hold color information.
|
||
|
struct TranslationParm
|
||
|
{
|
||
|
short RangeStart; // First level for this range
|
||
|
short RangeEnd; // Last level for this range
|
||
|
uint8_t Start[3]; // Start color for this range
|
||
|
uint8_t End[3]; // End color for this range
|
||
|
};
|
||
|
|
||
|
|
||
|
extern TArray<TranslationParm> TranslationParms[2];
|