Add ChunkMap for better debugging
This commit is contained in:
parent
42d72422c6
commit
68c50f894b
5 changed files with 153 additions and 33 deletions
|
|
@ -1,8 +1,12 @@
|
|||
from .chunks.py import ChunkPool
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue