Fireset
Loading...
Searching...
No Matches
color.h
1// Copyright (c) 2025-2026 Henrique Rodrigues Santos
2// Licensed under the MIT License
3// Github: https://github.com/saintsHr/Fireset
4
5#pragma once
6
7#include <stdint.h>
8
15typedef struct{
16 uint8_t r;
17 uint8_t g;
18 uint8_t b;
19} FsColor;
RGB color representation.
Definition color.h:15
uint8_t b
Definition color.h:18
uint8_t r
Definition color.h:16
uint8_t g
Definition color.h:17