This repository has been archived on 2026-04-30. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Tortuga/client/main.cpp
T
Kayne Ruse 79304f24b8 Imported basics
project directory
client - scene system
server - empty main
SDL_net source
graphical resources
2013-04-28 04:37:14 +10:00

21 lines
285 B
C++

#include "scene_manager.h"
#include <stdexcept>
#include <iostream>
using namespace std;
int main(int, char**) {
SceneManager app;
try {
app.Init();
app.Proc();
app.Quit();
}
catch(exception& e) {
cerr << "Fatal error: " << e.what() << endl;
return 1;
}
return 0;
}