1 /*****************************************************************************
2  * Copyright (c) 2014-2021 OpenRCT2 developers
3  *
4  * For a complete list of all authors, please refer to contributors.md
5  * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
6  *
7  * OpenRCT2 is licensed under the GNU General Public License version 3.
8  *****************************************************************************/
9 
10 #pragma once
11 
12 #include "../common.h"
13 
14 struct rct_vehicle_colour
15 {
16     uint8_t body_colour;
17     uint8_t trim_colour;
18 };
19 
20 struct VehicleColour
21 {
22     uint8_t Body;
23     uint8_t Trim;
24     uint8_t Ternary;
25 };
26