HighRezTimer.cpp 215 B

1234567891011
  1. #include "anki/script/Common.h"
  2. #include "anki/util/HighRezTimer.h"
  3. WRAP(HighRezTimer)
  4. {
  5. class_<HighRezTimer>("HighRezTimer")
  6. .def("getCrntTime", &HighRezTimer::getCrntTime)
  7. .staticmethod("getCrntTime")
  8. ;
  9. }