2025-05-25 04:43:37 +00:00
|
|
|
#include "sims_world.h"
|
2025-06-08 16:42:56 +00:00
|
|
|
#include "TempletAssemble.h"
|
2025-05-25 04:43:37 +00:00
|
|
|
#include <QtWidgets/QApplication>
|
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
QApplication a(argc, argv);
|
2025-06-10 15:44:38 +00:00
|
|
|
SimsWorld w;
|
|
|
|
w.show();
|
2025-05-25 04:43:37 +00:00
|
|
|
return a.exec();
|
|
|
|
}
|