Added initial files.

This commit is contained in:
jussi
2022-02-18 18:27:10 +02:00
parent 345cc1d5aa
commit 6e4fdd3b3a
53 changed files with 27310 additions and 0 deletions

16
include/main.h Normal file
View File

@@ -0,0 +1,16 @@
#pragma once
#define STRING_LEN 1024
#define VERSION_MAJOR 0
#define VERSION_MINOR 1
#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>