Files
JGL/include/JGL/Color4.h
2024-02-20 04:01:29 -05:00

11 lines
117 B
C++

#pragma once
namespace JGL
{
struct Color4{
int r;
int g;
int b;
int a;
};
}