Skip to content

fegomes/libsdlpp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libsdlcpp

This is the first example (Hello World) to using libsdlpp

#include "libsdlpp/window.hpp"

int main(int argc, char* argv[]) 
{
    using namespace libsdlpp;

    window w("Hello World", 800, 600);

    w.init();
    w.run();

    return 1;
}