wot/clientchunkpool.py
2017-04-07 19:35:05 +00:00

12 lines
204 B
Python

from chunks import ChunkPool
class ClientChunkPool(ChunkPool):
"""
A ChunkPool that requests/loads chunks from a client.
"""
def __init__(self):
super().__init__()
self.max_age = 10 #s
pass