Document return value of MapGenerator.generate

This commit is contained in:
Eryn Wells 2022-05-07 11:20:41 -07:00
parent 4002b64640
commit 3510bab79a

View file

@ -63,6 +63,11 @@ class MapGenerator:
Subclasses should implement this and fill in their specific map
generation algorithm.
Returns
-------
np.ndarray
A two-dimensional array of tiles. Dimensions should match the given size.
'''
raise NotImplementedError()