Rigs of Rods 2023.09
Soft-body Physics Simulation
Loading...
Searching...
No Matches
(ValueTypes) color.h
Go to the documentation of this file.
1
2 // =================================================== //
3 // THIS IS NOT A C++ HEADER! Only a dummy for Doxygen. //
4 // =================================================== //
5
6namespace ScriptValueTypes {
7
19struct color
20{
21public:
22 // properties
23 float r;
24 float g;
25 float b;
26 float a;
27
30 color(float, float, float, float);
31 color(const color &in);
33 color(float);
35}
36
39
40} //namespace ScriptValueTypes
41
Pseudo-namespace; it doesn't exist in code or script runtime, only in this documentation.
Binding of Ogre::ColourValue.
color(const color &in)
color(float, float, float, float)