?? display.h
字號:
/*
** display.h
**
** Written by Peter Sutton - October 2004
**
*/
/*
** Initialise the screen and draw a border around where the pieces
** will fall. Serial IO must be initialised before calling this.
*/
void init_screen(void);
/*
** Move to a given position on the screen, delete to the end of
** the current line and output the given value.
*/
void output_score(void);
/*
** Outputs data to the board
*/
void display_food_at(int8_t x, int8_t y);
void display_snake_at(int8_t x, int8_t y);
void display_blank_at(int8_t x, int8_t y);
/*
** Output a game over message
*/
void game_over_message(void);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -