Capycore Engine  0.1.0
A simple and lightweight game engine written in C++ based on the Unity API architecture.
Loading...
Searching...
No Matches
color.h
Go to the documentation of this file.
1#pragma once
2
7class Color {
8 public:
9 unsigned short r;
10 unsigned short g;
11 unsigned short b;
12 unsigned short a;
13 Color(unsigned short r, unsigned short g, unsigned short b, unsigned short a);
15};
Represents a color with red, green, blue, and alpha components. Each component is represented as an u...
Definition color.h:7
unsigned short b
Definition color.h:11
unsigned short a
Definition color.h:12
unsigned short g
Definition color.h:10
Color(unsigned short r, unsigned short g, unsigned short b, unsigned short a)
unsigned short r
Definition color.h:9