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 588B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*!
  2. * \file include/main.h
  3. * \brief Service locator
  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. #include "World.h"
  16. Console &getConsole();
  17. Game &getGame();
  18. Menu &getMenu();
  19. OpenRaider &getOpenRaider();
  20. Sound &getSound();
  21. Window &getWindow();
  22. World &getWorld();
  23. /*!
  24. * \brief Program entry point
  25. * \param argc number of arguments
  26. * \param argv array with argc strings
  27. * \returns 0 on success
  28. */
  29. int main(int argc, char *argv[]);
  30. #endif