Mercurial > sdl-ios-xcode
view EXCLUDE/GLTSF/src/Main.cpp @ 4732:e1307be6cb9e
Implementing base parts of TSF
author | dewyatt |
---|---|
date | Sun, 30 May 2010 15:48:16 -0400 |
parents | 6032ada8b9e5 |
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; }