8 lines
141 B
Python
8 lines
141 B
Python
from .chunks.py import ChunkPool
|
|
|
|
class DBChunkPool(ChunkPool):
|
|
"""
|
|
A ChunkPool that can load/save chunks from/to a database.
|
|
"""
|
|
|
|
pass
|