#ifndef __TYPES_H__
#define __TYPES_H__
#include <opengl.h>
typedef GLFWwindow* Window;
typedef struct {
float x, y;
} float2;
float x, y, z;
} float3;
float x, y, z, w;
} float4;
#endif