1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-19 13:03:11 +01:00

Move colour_t definition to Colour.h

This commit is contained in:
Aaron van Geffen
2024-07-09 14:51:11 +02:00
parent b87224aabc
commit f3834ef2d6
4 changed files with 3 additions and 4 deletions

View File

@@ -25,8 +25,6 @@
#include <cstddef>
#include <cstdint>
using colour_t = uint8_t;
// Gets the name of a symbol as a C string
#define nameof(symbol) #symbol

View File

@@ -14,6 +14,7 @@
#include <string_view>
using colour_t = uint8_t;
using PaletteIndex = uint8_t;
/**

View File

@@ -9,7 +9,7 @@
#pragma once
#include "../../common.h"
#include "../../interface/Colour.h"
#include "../../sprites.h"
#include "../../world/Location.hpp"

View File

@@ -9,7 +9,7 @@
#pragma once
#include "../common.h"
#include "../interface/Colour.h"
#include <cstdint>