|
@@ -18,6 +18,7 @@
|
|
|
#include "raylib.h"
|
|
|
|
|
|
#define RAYGUI_IMPLEMENTATION
|
|
|
+#define RAYGUI_SUPPORT_ICONS
|
|
|
#include "../../src/raygui.h"
|
|
|
|
|
|
//------------------------------------------------------------------------------------
|
|
@@ -79,7 +80,7 @@ int main()
|
|
|
|
|
|
ClearBackground(RAYWHITE);
|
|
|
|
|
|
- exitWindow = GuiWindowBox((Rectangle){ 0, 0, screenWidth, screenHeight }, "PORTABLE WINDOW");
|
|
|
+ exitWindow = GuiWindowBox((Rectangle){ 0, 0, screenWidth, screenHeight }, "#198# PORTABLE WINDOW");
|
|
|
|
|
|
DrawText(TextFormat("Mouse Position: [ %.0f, %.0f ]", mousePosition.x, mousePosition.y), 10, 40, 10, DARKGRAY);
|
|
|
|