This commit is contained in:
Djalim Simaila 2022-01-11 14:48:23 +01:00
parent 8aea8ba0f9
commit cc30d3b3cd
2 changed files with 4 additions and 3 deletions

View File

@ -14,7 +14,7 @@
#
general:
maxFPS: 30
theme: bad
theme:
#############################

View File

@ -176,7 +176,8 @@ public:
* @param[in] pos : pixel coordinates of the text
* @param[in] text : text to show on screen
* @param[in] color : color of the text to show
* @fn void drawText(const Position& pos, const string& text, const nsGraphics::RGBAcolor& color = nsGraphics::KWhite) const;
* @param[in] font : the glut font to use for the text
* @fn void drawText(const Position& pos, const string& text, const RGBAcolor& color = nsGraphics::KWhite, Font font = Font::BITMAP_TIMES_ROMAN_24) const;
*/
void drawText(const Position& pos, const string& text, const RGBAcolor& color = nsGraphics::KWhite, Font font = Font::BITMAP_TIMES_ROMAN_24) const;
@ -227,7 +228,7 @@ public:
* @param[in] pID : player id
* @param[in] score : score of this player
* @param[out] name : name selected by the player
* @fn
* @fn void askPlayerNameMenu(playerID pID, unsigned score, string& name);
*/
void askPlayerNameMenu(playerID pID, unsigned score, string& name);