mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 21:34:15 +00:00
12 lines
124 B
C
12 lines
124 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
struct RGBAColor
|
||
|
|
{
|
||
|
|
uint8_t r, g, b, a;
|
||
|
|
};
|
||
|
|
}
|