Minesweeper/include/engine/externals.h
2024-05-08 13:50:29 -04:00

20 lines
No EOL
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