void highscore_show(int numb) {
    highscore_add("player name",numb);
     while(!keyboard_check(27 /*vk_escape*/)) {
    draw_highscore(20, 0, room_width-20, room_height);

         screen_refresh();
         io_handle();
     }
}
Exemplo n.º 2
0
 void keyboard_wait() {
   io_clear();
   while(!keyboard_check(1/*vk_anykey*/)) {
       io_handle();
   }
 }