GLFW.h 167 B

1234567891011121314
  1. #ifndef GLFW_H
  2. #define GLFW_H
  3. #include <GL/glew.h>
  4. #include <GLFW/glfw3.h>
  5. typedef uint64_t Nanos;
  6. namespace GLFW {
  7. bool init();
  8. Nanos getNanos();
  9. }
  10. #endif