1
0
mirror of https://github.com/ssloy/tinyraycaster.git synced 2025-01-17 05:08:22 +01:00
2019-02-10 08:07:41 +01:00

15 lines
245 B
C

#ifndef MAP_H
#define MAP_H
#include <cstdlib>
struct Map {
size_t w, h; // overall map dimensions
Map();
int get(const size_t i, const size_t j) const;
bool is_empty(const size_t i, const size_t j) const;
};
#endif // MAP_H