27 lines
462 B
C
27 lines
462 B
C
#ifndef CORE_H
|
|
# define CORE_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
//#include <stdarg.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <pthread.h>
|
|
#include <complex.h>
|
|
#include <math.h>
|
|
#include <unistd.h>
|
|
|
|
#include <extern/raylib.h>
|
|
#include <extern/rlgl.h>
|
|
#include <extern/raymath.h>
|
|
#include <extern/raygui.h>
|
|
|
|
//#include <extern/toml.h>
|
|
//#include <extern/FastNoiseLite.h>
|
|
|
|
#endif
|