123456789101112131415161718192021222324252627282930313233343536 |
- /*******************************************************************************************
- *
- * raygui - Standalone mode usage template
- *
- * DEPENDENCIES:
- * raygui 2.6 - Immediate-mode GUI controls.
- *
- *
- * LICENSE: zlib/libpng
- *
- * Copyright (c) 2020 Ramon Santamaria (@raysan5)
- *
- **********************************************************************************************/
- #define RAYGUI_IMPLEMENTATION
- #define RAYGUI_STANDALONE
- #include "../../src/raygui.h"
- #include "custom_backend.h"
- //------------------------------------------------------------------------------------
- // Program main entry point
- //------------------------------------------------------------------------------------
- int main()
- {
- // TODO: Initialize your systems (window, graphics, inputs)
-
- // TODO: Create your game loop
- {
- // TODO: Use raygui API
- }
-
- // TODO: De-initialize all resources
- return 0;
- }
|