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.

time.h 349B

12345678910111213141516171819202122232425
  1. /*!
  2. * \file include/utils/time.h
  3. * \brief Time handling utilities
  4. *
  5. * \author xythobuz
  6. */
  7. #ifndef _UTILS_TIME_H_
  8. #define _UTILS_TIME_H_
  9. using or_time_t = unsigned long;
  10. /*!
  11. * \brief Read the system timer
  12. * \returns number of ticks
  13. */
  14. or_time_t systemTimerGet();
  15. /*!
  16. * \brief Reset the system timer
  17. */
  18. void systemTimerReset();
  19. #endif