foreground + background colors

BlitzMax Forums/Brucey's Modules/foreground + background colors

slenkar(Posted 2008) [#1]
Ive seen wxred() used to set the colors
but how do you enter a integer code for a color like: 255,255,255 for white


DavidDC(Posted 2008) [#2]
Local white:wxColour = New wxColour.Create(255,255,255)



slenkar(Posted 2008) [#3]
thanks!