GLFWWrapper.h 193 B

12345678910111213
  1. #ifndef GLFWWRAPPER_H
  2. #define GLFWWRAPPER_H
  3. #include "gaming-core/utils/Types.h"
  4. namespace GLFWWrapper {
  5. typedef int64 Nanos;
  6. bool hasError();
  7. Nanos getTimeNanos();
  8. }
  9. #endif