TurtleBrains  0.3.5
High quality, portable, C++ framework for rapid 2D game development.
tb_color_palette.hpp
1 
9 #ifndef TurtleBrains_ColorPalette_hpp
10 #define TurtleBrains_ColorPalette_hpp
11 
12 namespace TurtleBrains
13 {
14  namespace Graphics
15  {
16 
21  enum class ColorPalette
22  {
23  Opaque,
25 
26  White,
27  Black,
28  Red,
29  Yellow,
30  Green,
31  Cyan,
32  Blue,
33  Magenta,
34 
35  LightGrey,
37  Grey,
38  Gray = Grey,
39  DarkGrey,
40  DarkGray = DarkGrey,
41 
42  Brown,
43  Purple,
44  MonkyBlue,
46  };
47  }; /* namespace Graphics */
48 }; /* namespace TurtleBrains */
49 
51 
52 #endif /* TurtleBrains_ColorPalette_hpp */
Give the GameScene and Entities something to display, Text, Sprites and AnimatedSprites help bring th...
Here is some information about the primary namespace.
Definition: tb_application_dialog.hpp:21
ColorPalette
Definition: tb_color_palette.hpp:21