const int CHAR_INT_FONT = FONT_Z1; const int CHAR_INT_LAYER = 7; const int CHAR_INT_WIDTH = -1; const int CHAR_INT_HEIGHT = -1; const int CHAR_INT_OPACITY = 128; // FastInt(); // // x and y are the x and y positions you want to draw the integer // color is the color of the text. Put an integer here or use one of the color constants. // background_color is the background color of the text. Put an integer here or use one of the color constants. // number is the number or variable you want to draw. void FastInt(int x, int y, int color, int background_color, int number) {Screen->DrawInteger(CHAR_INT_LAYER, x, y, CHAR_INT_FONT, color, background_color, CHAR_INT_WIDTH, CHAR_INT_HEIGHT, number, 0, CHAR_INT_OPACITY);}