VulcanoLE/headers/VulcanoLE/Colors/Type.h

10 lines
140 B
C++

#pragma once
#include <cstdint>
typedef struct rgba_type {
int16_t r{};
int16_t g{};
int16_t b{};
int16_t a = 255;
} rgba;