This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
Minesweeper/include/engine/externals.h

20 lines
318 B
C
Raw Permalink Normal View History

2024-05-08 12:50:29 -05:00
// 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