Main.cpp 383 B

1234567891011121314151617181920212223
  1. /*
  2. * 2D Game Engine
  3. * Main.cpp: App entry point
  4. * Based on pikuma.com 2D game engine in C++ and Lua course
  5. * Copyright (c) 2021 986-Studio. All Right Reserved
  6. *
  7. * Created by Manoël Trapier on 09/02/2021.
  8. */
  9. #include <iostream>
  10. #include <Game.h>
  11. int main(int argc, char *argv[])
  12. {
  13. Game game;
  14. game.Initialize();
  15. game.Run();
  16. game.Destroy();
  17. return 0;
  18. }