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

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