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

8
dbchunkpool.py Normal file
View file

@ -0,0 +1,8 @@
from .chunks.py import ChunkPool
class DBChunkPool(ChunkPool):
"""
A ChunkPool that can load/save chunks from/to a database.
"""
pass