Mercurial > sdl-ios-xcode
view EXCLUDE/GLTSF/src/Main.cpp @ 4730:6032ada8b9e5
Adding GLTSF (somewhat based on SFML, no actual TSF code yet)
author | dewyatt |
---|---|
date | Tue, 25 May 2010 18:53:09 -0400 |
parents | |
children | 0c7c67d4e6ee |
line wrap: on
line source
#include "App.hpp" #include <stdexcept> int main(int argc, char *argv[]) { try { App theApp; theApp.Run(); } catch (const std::exception& e) { printf("Error: %s\n", e.what()); return 1; } return 0; }