20 lines
318 B
C
20 lines
318 B
C
|
|
// Define once
|
||
|
|
#ifndef H_EXTERNALS
|
||
|
|
#define H_EXTERNALS
|
||
|
|
|
||
|
|
// Includes
|
||
|
|
/// System
|
||
|
|
#include <iostream>
|
||
|
|
#include <random>
|
||
|
|
#include <fstream>
|
||
|
|
#include <vector>
|
||
|
|
#include <math.h>
|
||
|
|
#include <cstdlib>
|
||
|
|
#include <ctime>
|
||
|
|
/// SDL2
|
||
|
|
#include <SDL2/SDL.h>
|
||
|
|
#include <SDL2/SDL_image.h>
|
||
|
|
#include <SDL2/SDL_ttf.h>
|
||
|
|
|
||
|
|
// End definition
|
||
|
|
#endif
|