Plan out project structure
This commit is contained in:
commit
59c3f6e34e
7 changed files with 100 additions and 0 deletions
15
maps.py
Normal file
15
maps.py
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue