#include "GGUI.h"
using namespace GGUI;
int main()
{
// Initialize and startup GGUI
Init_GGUI();
// Give the main window an title
Main->Set_Title("Your App UI");
// Create an text field
Text_Field* txt = new Text_Field("Hello World!");
// Add the text field to the main container to be displayed
Main->Add_Child(txt);
// Your code here...
// de-initialize console status.
Exit();
}
-
g++ ... GGUI.lib