wndDrawTextColor method
Implementation
void wndDrawTextColor( String text, double x, double y, int color, bool right ){
// 論理座標から実座標に変換
int gx = imgPosX( x );
int gy = imgPosY( y );
drawTextColor( text, gx, gy, color, right );
}
void wndDrawTextColor( String text, double x, double y, int color, bool right ){
// 論理座標から実座標に変換
int gx = imgPosX( x );
int gy = imgPosY( y );
drawTextColor( text, gx, gy, color, right );
}