voxspatium/src/Main.cpp

24 lines
882 B
C++
Raw Permalink Normal View History

2018-06-02 16:45:16 +00:00
// Voxspatium Engine - Voxel Planets Engine
2018-04-14 14:42:32 +00:00
// Copyright (C) 2018 Evert "Diamond" Prants <evert@lunasqu.ee>
//
// 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 <https://www.gnu.org/licenses/>.
2018-04-13 19:53:56 +00:00
#include "Application.h"
int main(int argc, char const *argv[])
{
2018-04-14 14:42:32 +00:00
Application::getInstance().initialize();
2018-04-13 19:53:56 +00:00
return 0;
}