20 lines
273 B
C++
20 lines
273 B
C++
/*
|
|
* Copyright 2009-2011, 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;
|
|
}
|