Open Source Tomb Raider Engine
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

main.h 568B

123456789101112131415161718192021222324252627282930313233
  1. /*!
  2. * \file include/main.h
  3. * \brief Where main() is
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _MAIN_H_
  8. #define _MAIN_H_
  9. #include "Console.h"
  10. #include "Game.h"
  11. #include "Menu.h"
  12. #include "OpenRaider.h"
  13. #include "Sound.h"
  14. #include "Window.h"
  15. Console &getConsole();
  16. Game &getGame();
  17. Menu &getMenu();
  18. OpenRaider &getOpenRaider();
  19. Sound &getSound();
  20. Window &getWindow();
  21. /*!
  22. * \brief Program entry point
  23. * \param argc number of arguments
  24. * \param argv array with argc strings
  25. * \returns 0 on success
  26. */
  27. int main(int argc, char *argv[]);
  28. #endif