0

例えば:

int score = 20;

int main(){
    al_draw_text(foo, foo, foo, foo, foo, "SCORE");

    //I would then like to print the score to the screen,
    // is there anyway to do this?   


   al_rest(1000);

   return 0;

}

これは可能ですか、またはスコアを aconst charまたは aに変換するのはstringどうですか?

4

1 に答える 1

0

al_draw_textfを使用して、printf スタイルのフォーマット文字列を使用して文字列を出力できます。

このようなもの:

al_draw_textf(my_font, my_color, x_pos, y_pos, 0, "score = %d", score);
于 2013-10-16T13:56:53.847 に答える