summaryrefslogtreecommitdiff
path: root/include/main.h
blob: 618c97179ea6690bc7cf579dd313ea1254b71d8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once

#define STRING_LEN 1024

#define VERSION_MAJOR 0
#define VERSION_MINOR 5
#define VERSION_PATCH 0
#define VERSION_DEV 1

#include "glad.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "raylib.h"
#include "rlgl.h"
#include "raymath.h"
#include "raygui.h"
#include "rlights.h"
#include "rcamera.h"
#include "glfw3.h"
#include "glfw3native.h"
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <stdint.h>