fix: interface definitions

This commit is contained in:
əlemi 2022-07-03 00:32:51 +02:00
parent bf4d16c526
commit 1e5fa6215e
No known key found for this signature in database
GPG key ID: BBCBFE5D7244634E

View file

@ -2,7 +2,7 @@ from typing import List, Optional, Iterable, Tuple
def bit_pack(data:Iterable[int], bits:int, size:int): ...
class Chunk:
def __init__(self, x: int, z: int, bitmask: int, ground_up_continuous: bool): ...
def __init__(self, x: int, z: int, bitmask: int, ground_up_continuous: bool, block_entities: str): ...
def read(self, chunk_data:bytes): ...
def merge(self, other:'Chunk'): ...
def get_slice(self, y:int) -> Tuple[Tuple[int, ...], ...]: ...