Map.h
user_6225994
plain_text
2 years ago
195 B
5
Indexable
#include "Point.h" #pragma once class Map{ public: int _w, _h; char **_map; //method void DisPlayMap(); Map(); Map(int w, int h); Map(int w, int h, char** map); ~Map(); };
Editor is loading...