You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature: Guess the word
# Define Static Function:
/* Stand Output stream*/staticconst HANDLE Instance;
/* Set cursor position */static COORD setCursor(short x, short y);
/* Get Now cursor position */static COORD getCursor();
/* Get Now using Color*/staticunsignedshortgetColor();
/* Set Background color , fonr color use color code*/staticboolsetColor(unsignedshort color = 7);
/* Set Background color , fonr color use Flag*/staticboolsetColor(Flag flag);
/* Set Command Box height & weight */staticvoidinitialize(int height = 40, int weight = 180);
/*Set StandOutput stream font-color */inline std::ostream& operator << (std::ostream& os, Flag& setting)
inline std::ostream& operator << (std::ostream& os, Flag&& setting)
inline Flag operator | (Flag base, Flag adder)
/* 色碼表 */
#defineCLI_FONT_LIGHT0b00001000
#defineCLI_FONT_BLACK0b00000000
#defineCLI_FONT_BLUE0b00000001
#defineCLI_FONT_GREEN0b00000010
#defineCLI_FONT_CYAN0b00000011
#defineCLI_FONT_RED0b00000100
#defineCLI_FONT_PURPLE0b00000101
#defineCLI_FONT_YELLOW0b00000110
#defineCLI_FONT_WHITE0b00000111
#defineCLI_BACK_LIGHT0b10000000
#defineCLI_BACK_BLACK0b00000000
#defineCLI_BACK_BLUE0b00010000
#defineCLI_BACK_GREEN0b00100000
#defineCLI_BACK_CYAN0b00110000
#defineCLI_BACK_RED0b01000000
#defineCLI_BACK_PURPLE0b01010000
#defineCLI_BACK_YELLOW0b01100000
#defineCLI_BACK_WHITE0b01110000