Plan out project structure

This commit is contained in:
Joscha 2017-04-04 20:20:48 +00:00
commit 59c3f6e34e
7 changed files with 100 additions and 0 deletions

15
maps.py Normal file
View file

@ -0,0 +1,15 @@
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