26 lines
392 B
C
26 lines
392 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 <complex.h>
|
|
#include <math.h>
|
|
#include <pthread.h>
|
|
|
|
|
|
#include <raylib.h>
|
|
#include <raymath.h>
|
|
#include <raygui.h>
|
|
|
|
#include <extern/toml.h>
|
|
#include <extern/FastNoiseLite.h>
|
|
|
|
#endif
|