SuperSpaceInvaderTurboApoca.../headers/config.h
2021-12-16 12:18:49 +01:00

15 lines
169 B
C++

#ifndef GUARD_CONFIG
#define GUARD_CONFIG
#include<vector>
using namespace std;
struct Config{
aliensGrid grid;
unsigned alien_size;
unsigned distance;
};
#endif