37 lines
933 B
C
37 lines
933 B
C
|
/*******************************************************************************************
|
||
|
*
|
||
|
* 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;
|
||
|
}
|