wndDrawTextColor method

void wndDrawTextColor(
  1. String text,
  2. double x,
  3. double y,
  4. int color,
  5. bool right,
)

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 );
}