Mercurial > sdl-ios-xcode
view EXCLUDE/GLIMM/src/Main.cpp @ 4744:34c3e6d69575
Added mouse button click to toggle IMM.
author | dewyatt |
---|---|
date | Tue, 06 Jul 2010 02:00:15 -0400 |
parents | bb189d44af16 |
children |
line wrap: on
line source
#include "App.hpp" #include <stdexcept> int main(int argc, char *argv[]) { int Result = EXIT_SUCCESS; try { App theApp; theApp.Run(); } catch (const std::exception& e) { printf("Error: %s\n", e.what()); Result = EXIT_FAILURE; } catch (...) { printf("Unhandled exception\n"); Result = EXIT_FAILURE; } system("PAUSE"); return Result; }