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

#define STRING_LEN 1024

#define VERSION_MAJOR 0
#define VERSION_MINOR 4
#define VERSION_PATCH 0
#define VERSION_DEV 0

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