#ifndef __MAP
#define __MAP
#include "matrix.h"
#include "model.h"
#include <GL/glew.h>
#include <GLFW/glfw3.h>
#include "render.h"
struct map {
    int object_count;
    struct objects* objects;
};

struct map* loadMap(const char* filename);

#endif