Open Source Tomb Raider Engine
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

main.h 630B

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