engine.cpp
1 #include "engine.h" 2 3 enginend::theme DEFAULTTHEMECODE={ 4 .textfieldbg ={127,0,0,127}, 5 .background = {0,0,0,0}, 6 .border = {0,0,0,0}, 7 .booleanbutton = { 8 {0,200,0,180}, 9 {100,200,100,180}, 10 {100,255,100,255}, 11 {200,0,0,180}, 12 {200,100,100,180}, 13 {255,100,100,255}, 14 }, 15 .text = {255,255,255,255}, 16 .tint = {255,255,255,255}, 17 .button = { 18 {0,0,0,0}, 19 {255,255,255,80}, 20 {255,255,255,160} 21 }, 22 .buttontext = { 23 {255,255,255,255}, 24 {255,255,255,255}, 25 {255,255,255,255} 26 } 27 28 }; 29 enginend::theme* enginend::DEFAULT=&DEFAULTTHEMECODE;