Added lua and SQL, but removed lsqlite3.c
lsqlite3.c looked like a good idea for connnecting SQL and lua, but I couldn't get it to work and rather than struggle on this, I'll write my own library later on.
This commit is contained in:
+2
-2
@@ -28,10 +28,10 @@
|
||||
|
||||
using namespace std;
|
||||
|
||||
int main(int, char**) {
|
||||
int main(int argc, char** argv) {
|
||||
cout << "Beginning server" << endl;
|
||||
try {
|
||||
ServerApplication::GetInstance()->Init();
|
||||
ServerApplication::GetInstance()->Init(argc, argv);
|
||||
ServerApplication::GetInstance()->Loop();
|
||||
ServerApplication::GetInstance()->Quit();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user