KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
colors.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2 examples/dreamcast/raylib/raytris/src/colors/colors.h
3 Copyright (C) 2024 Cole Hall
4*/
5
6#pragma once
7#include <raylib.h>
8#include <vector>
9
10extern const Color darkGrey;
11extern const Color green;
12extern const Color red;
13extern const Color orange;
14extern const Color yellow;
15extern const Color purple;
16extern const Color cyan;
17extern const Color blue;
18extern const Color lightBlue;
19extern const Color darkBlue;
20
21std::vector<Color> GetCellColors();
const Color red
Definition colors.cpp:10
const Color purple
Definition colors.cpp:13
const Color orange
Definition colors.cpp:11
const Color darkBlue
Definition colors.cpp:17
const Color blue
Definition colors.cpp:15
const Color lightBlue
Definition colors.cpp:16
const Color darkGrey
Definition colors.cpp:8
const Color green
Definition colors.cpp:9
const Color cyan
Definition colors.cpp:14
std::vector< Color > GetCellColors()
Definition colors.cpp:19
const Color yellow
Definition colors.cpp:12