Difference between revisions of "SColor"
From King Arthur's Gold Wiki
(Created page with "The SColor type is used in GUI functions such as DrawRectangle. <syntaxhighlight lang="cpp"> SColor color ( const uint, const uint, const uint, const uint ) </syntaxhighlight> ...") |
|||
Line 1: | Line 1: | ||
+ | <onlyinclude> | ||
The SColor type is used in GUI functions such as DrawRectangle. | The SColor type is used in GUI functions such as DrawRectangle. | ||
+ | </onlyinclude> | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> |
Revision as of 22:41, 28 September 2012
The SColor type is used in GUI functions such as DrawRectangle.
SColor color ( const uint, const uint, const uint, const uint )
Example
GUI::DrawRectangle(rect, SColor(255, 25, 25, 25, 0));