This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
Explode/general.h

16 lines
301 B
C

#ifndef GENERAL_H
#define GENERAL_H
const int BOMB = 9;
const int HAPPY = 10;
const int GROUND = 11;
const int FLAG = 12;
const int TILE_SIZE_X = 64;
const int TILE_SIZE_Y = 64;
const int SMALL_MAP_SIZE_X = 9;
const int SMALL_MAP_SIZE_Y = 9;
const int SMALL_MAP_BOMBS = 10;
#endif