Files
Aerofoil/PortabilityLayer/RGBAColor.h

12 lines
124 B
C
Raw Normal View History

#pragma once
#include <stdint.h>
namespace PortabilityLayer
{
struct RGBAColor
{
uint8_t r, g, b, a;
};
}