This repository has been archived on 2024-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
HomdEngine/src/main.cpp

16 lines
277 B
C++
Raw Normal View History

2023-05-27 17:44:20 +03:00
/**
* Copyright (c) 2023, Furkan Mudanyali <fmudanyali@icloud.com>
* All rights reserved
*/
#include <game/game.h>
#ifdef __WIN32
int wmain(int argc, char** argv) {
#else
int main(int argc, char** argv) {
#endif
auto* game = new Game;
game->loop();
return 0;
}