diff --git a/frmGTA5Sync.cpp b/frmGTA5Sync.cpp new file mode 100755 index 0000000..8fb8ec6 --- /dev/null +++ b/frmGTA5Sync.cpp @@ -0,0 +1,31 @@ +/***************************************************************************** +* gta5sync GRAND THEFT AUTO V SYNC +* Copyright (C) 2016 Syping Gaming Team +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*****************************************************************************/ + +#include "frmGTA5Sync.h" +#include "ui_frmGTA5Sync.h" + +frmGTA5Sync::frmGTA5Sync(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::frmGTA5Sync) +{ + ui->setupUi(this); +} + +frmGTA5Sync::~frmGTA5Sync() +{ + delete ui; +} diff --git a/frmGTA5Sync.h b/frmGTA5Sync.h new file mode 100755 index 0000000..7f0d1d3 --- /dev/null +++ b/frmGTA5Sync.h @@ -0,0 +1,39 @@ +/***************************************************************************** +* gta5sync GRAND THEFT AUTO V SYNC +* Copyright (C) 2016 Syping Gaming Team +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*****************************************************************************/ + +#ifndef FRMGTA5SYNC_H +#define FRMGTA5SYNC_H + +#include + +namespace Ui { +class frmGTA5Sync; +} + +class frmGTA5Sync : public QMainWindow +{ + Q_OBJECT + +public: + explicit frmGTA5Sync(QWidget *parent = 0); + ~frmGTA5Sync(); + +private: + Ui::frmGTA5Sync *ui; +}; + +#endif // FRMGTA5SYNC_H diff --git a/frmGTA5Sync.ui b/frmGTA5Sync.ui new file mode 100755 index 0000000..1908779 --- /dev/null +++ b/frmGTA5Sync.ui @@ -0,0 +1,24 @@ + + frmGTA5Sync + + + + 0 + 0 + 400 + 300 + + + + frmGTA5Sync + + + + + + + + + + + diff --git a/gta5sync.pro b/gta5sync.pro new file mode 100755 index 0000000..a0a4b2b --- /dev/null +++ b/gta5sync.pro @@ -0,0 +1,31 @@ +#/***************************************************************************** +#* gta5sync GRAND THEFT AUTO V SYNC +#* Copyright (C) 2015-2016 Syping Gaming Team +#* +#* Licensed under the Apache License, Version 2.0 (the "License"); +#* you may not use this file except in compliance with the License. +#* You may obtain a copy of the License at +#* +#* http://www.apache.org/licenses/LICENSE-2.0 +#* +#* Unless required by applicable law or agreed to in writing, software +#* distributed under the License is distributed on an "AS IS" BASIS, +#* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +#* See the License for the specific language governing permissions and +#* limitations under the License. +#*****************************************************************************/ + +QT += core gui + +greaterThan(QT_MAJOR_VERSION, 4): QT += widgets + +TARGET = gta5sync +TEMPLATE = app + + +SOURCES += main.cpp\ + frmGTA5Sync.cpp + +HEADERS += frmGTA5Sync.h + +FORMS += frmGTA5Sync.ui diff --git a/main.cpp b/main.cpp new file mode 100755 index 0000000..e05f337 --- /dev/null +++ b/main.cpp @@ -0,0 +1,28 @@ +/***************************************************************************** +* gta5sync GRAND THEFT AUTO V SYNC +* Copyright (C) 2016 Syping Gaming Team +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*****************************************************************************/ + +#include "frmGTA5Sync.h" +#include + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + frmGTA5Sync w; + w.show(); + + return a.exec(); +}