Chat-O-Matic/application/Main.cpp

19 lines
267 B
C++
Raw Normal View History

/*
* Copyright 2009, Andrea Anzani. All rights reserved.
* Distributed under the terms of the MIT License.
*
* Authors:
* Andrea Anzani, andrea.anzani@gmail.com
*/
#include "TheApp.h"
int
main(int argc, char* argv[])
{
TheApp app;
app.Run();
return 0;
}