diff options
author | Florent Revest <revestflo@gmail.com> | 2017-10-24 15:36:22 +0200 |
---|---|---|
committer | Florent Revest <revestflo@gmail.com> | 2017-10-24 15:41:39 +0200 |
commit | 437a043ce1a9f328b6906ebdef956d6838df7961 (patch) | |
tree | fa718e3ef597f39437266d32465bdc532ea4ee92 /main.cpp |
Initial commit. Based on the initial work of https://github.com/nielstholenaar/asteroid-compass
Diffstat (limited to '')
-rw-r--r-- | main.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..a44544c --- /dev/null +++ b/main.cpp @@ -0,0 +1,23 @@ +/* + * Copyright (C) 2017 - Florent Revest <revestflo@gmail.com> + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + */ + +#include <asteroidapp.h> + +int main(int argc, char *argv[]) +{ + return AsteroidApp::main(argc, argv); +} |