Difference between revisions of "DrawWindow"
From King Arthur's Gold Wiki
Shadlington (Talk | contribs) (Created page with "<onlyinclude> Draws a window with a shape specified by the given rect. </onlyinclude> <syntaxhighlight lang="cpp"> void DrawWindow(const recti &rect) </syntaxhighlight> [[Ca...") |
Shadlington (Talk | contribs) |
||
Line 2: | Line 2: | ||
Draws a window with a shape specified by the given [[rect]]. | Draws a window with a shape specified by the given [[rect]]. | ||
</onlyinclude> | </onlyinclude> | ||
+ | |||
+ | As this is GUI-related this is client only - it should be wrapped in "if ( getNet().isClient( ))" or in a client-only script. | ||
+ | |||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
void DrawWindow(const recti &rect) | void DrawWindow(const recti &rect) |
Revision as of 16:05, 22 August 2012
Draws a window with a shape specified by the given rect.
As this is GUI-related this is client only - it should be wrapped in "if ( getNet().isClient( ))" or in a client-only script.
void DrawWindow(const recti &rect)