/***************************************************************************** * Copyright (c) 2014-2018 OpenRCT2 developers * * For a complete list of all authors, please refer to contributors.md * Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2 * * OpenRCT2 is licensed under the GNU General Public License version 3. *****************************************************************************/ #include #include #include using namespace OpenRCT2; /** * Main entry point for non-Windows sytems. Windows instead uses its own DLL proxy. */ int main(int argc, const char** argv) { int runGame = cmdline_run(argv, argc); core_init(); if (runGame == 1) { gOpenRCT2Headless = true; gOpenRCT2NoGraphics = true; // Run OpenRCT2 with a plain context auto context = CreateContext(); context->RunOpenRCT2(argc, argv); } return gExitCode; }