mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +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;
|
|
};
|
|
}
|