12 lines
204 B
Python
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
|