wot/maps.py
2017-04-04 20:20:48 +00:00

15 lines
305 B
Python

class Map():
"""
A map which displays chunks and a cursor on the screen.
Allows for user to modify chunks in an intuitive way.
"""
pass
class ChunkMap():
"""
A map that shows which chunks are currently loaded.
Might show additional details too (i.e. if a chunk has been modified).
"""
pass