blob: e76d53c7f01e9f3652afd38a252d162c99684d21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef HONEY_COMMON_H
#define HONEY_COMMON_H
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h>
#include "glad.h"
#include <GLFW/glfw3.h>
#include <cglm/cglm.h>
#include <cglm/call.h>
#include "stb_image.h"
typedef GLFWwindow* honey_window;
#endif
|