Open Source Tomb Raider Engine
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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