Creating GUI with SDL
To create a GUI with the SDL, the first time have to do the settings for Microsoft Visual Studio such as this description.
Examples of ‘GUI.h’ in the program:
#include “SDL/GUI.h”
int main(int argc, char* args[])
{
bool quit = false; //variable quit
This code will make a window with 256 x 192 size, window initialisation
if(init(256, 192,”Dev Window”) == false)
{
return 1;
}
Making [...]









