blob: 64b25780f7135f4f9bfea8f945a3fe64bc2e6136 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#pragma once
#define STRING_LEN 1024
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
// #define WIN32_LEAN_AND_MEAN
// #if defined(_WIN32)
// #define WIN32
// #endif
// #if defined(_WIN64)
// #define WIN64
// #define _AMD64_
// #undef _X86_
// #else
// #undef _AMD64_
// #define _X86_
// #endif
// #include <minwindef.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "raylib.h"
#include "raymath.h"
#include "rlgl.h"
#include <lua.h>
#include <lualib.h>
#include <lauxlib.h>
#include <stdint.h>
// #ifdef _WIN32
// // #include <windows.h>
// #include <windef.h>
// #include <mmsystem.h>
// // #include <winbase.h>
// // #define APIENTRY WINAPI
// #endif
|