amulet-core 2.0.3a3.post250715095759__cp312-cp312-win_amd64.whl → 2.0.4a0.post250728102705__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of amulet-core might be problematic. Click here for more details.

@@ -0,0 +1,31 @@
1
+ from __future__ import annotations
2
+
3
+ from . import (
4
+ _amulet_core,
5
+ _version,
6
+ biome,
7
+ block,
8
+ block_entity,
9
+ chunk,
10
+ entity,
11
+ palette,
12
+ selection,
13
+ version,
14
+ )
15
+
16
+ __all__ = [
17
+ "biome",
18
+ "block",
19
+ "block_entity",
20
+ "chunk",
21
+ "compiler_config",
22
+ "entity",
23
+ "palette",
24
+ "selection",
25
+ "version",
26
+ ]
27
+
28
+ def _init() -> None: ...
29
+
30
+ __version__: str
31
+ compiler_config: dict
amulet/core/_version.py CHANGED
@@ -8,11 +8,11 @@ import json
8
8
 
9
9
  version_json = '''
10
10
  {
11
- "date": "2025-06-30T07:54:37+0100",
11
+ "date": "2025-07-28T11:25:11+0100",
12
12
  "dirty": false,
13
13
  "error": null,
14
- "full-revisionid": "3d4ebbe5b281a06285d5e207cbbe5909f0e22a75",
15
- "version": "2.0.3a3"
14
+ "full-revisionid": "dc592d63267cf51ecdff3972fd21b2fa4711de47",
15
+ "version": "2.0.4a0"
16
16
  }
17
17
  ''' # END VERSION_JSON
18
18
 
Binary file
Binary file
@@ -89,7 +89,7 @@ class Block(amulet.core.version.PlatformVersionContainer):
89
89
  version: amulet.core.version.VersionNumber,
90
90
  namespace: str,
91
91
  base_name: str,
92
- properties: dict[
92
+ properties: collections.abc.Mapping[
93
93
  str,
94
94
  amulet.nbt.ByteTag
95
95
  | amulet.nbt.ShortTag
@@ -223,7 +223,7 @@ class BlockStack:
223
223
  def __eq__(self, arg0: typing.Any) -> bool | types.NotImplementedType: ...
224
224
  def __ge__(self, arg0: BlockStack) -> bool: ...
225
225
  @typing.overload
226
- def __getitem__(self, arg0: int) -> Block: ...
226
+ def __getitem__(self, arg0: typing.SupportsInt) -> Block: ...
227
227
  @typing.overload
228
228
  def __getitem__(self, arg0: slice) -> list: ...
229
229
  def __gt__(self, arg0: BlockStack) -> bool: ...
@@ -237,7 +237,10 @@ class BlockStack:
237
237
  def __reversed__(self) -> collections.abc.Iterator[Block]: ...
238
238
  def count(self, value: typing.Any) -> int: ...
239
239
  def index(
240
- self, value: typing.Any, start: int = 0, stop: int = 9223372036854775807
240
+ self,
241
+ value: typing.Any,
242
+ start: typing.SupportsInt = 0,
243
+ stop: typing.SupportsInt = 9223372036854775807,
241
244
  ) -> int: ...
242
245
  @property
243
246
  def base_block(self) -> Block:
@@ -17,7 +17,7 @@ class BlockComponentData:
17
17
  def __init__(
18
18
  self,
19
19
  version_range: amulet.core.version.VersionRange,
20
- array_shape: tuple[int, int, int],
20
+ array_shape: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt],
21
21
  default_block: amulet.core.block.BlockStack,
22
22
  ) -> None: ...
23
23
  @property
@@ -6,7 +6,6 @@ import typing
6
6
 
7
7
  import numpy
8
8
  import numpy.typing
9
- import typing_extensions
10
9
 
11
10
  __all__ = ["IndexArray3D", "SectionArrayMap"]
12
11
 
@@ -16,13 +15,19 @@ class IndexArray3D:
16
15
  """
17
16
 
18
17
  @typing.overload
19
- def __init__(self, shape: tuple[int, int, int]) -> None: ...
18
+ def __init__(
19
+ self, shape: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt]
20
+ ) -> None: ...
20
21
  @typing.overload
21
- def __init__(self, shape: tuple[int, int, int], value: int) -> None: ...
22
+ def __init__(
23
+ self,
24
+ shape: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt],
25
+ value: typing.SupportsInt,
26
+ ) -> None: ...
22
27
  @typing.overload
23
28
  def __init__(self, other: IndexArray3D) -> None: ...
24
29
  @typing.overload
25
- def __init__(self, arg0: typing_extensions.Buffer) -> None: ...
30
+ def __init__(self, arg0: collections.abc.Buffer) -> None: ...
26
31
  @property
27
32
  def shape(self) -> tuple[int, int, int]: ...
28
33
  @property
@@ -33,35 +38,48 @@ class SectionArrayMap:
33
38
  A container of sub-chunk arrays.
34
39
  """
35
40
 
36
- def __contains__(self, arg0: int) -> bool: ...
37
- def __delitem__(self, arg0: int) -> None: ...
41
+ def __contains__(self, arg0: typing.SupportsInt) -> bool: ...
42
+ def __delitem__(self, arg0: typing.SupportsInt) -> None: ...
38
43
  def __eq__(self, arg0: typing.Any) -> bool | types.NotImplementedType: ...
39
- def __getitem__(self, arg0: int) -> numpy.typing.NDArray[numpy.uint32]: ...
44
+ def __getitem__(
45
+ self, arg0: typing.SupportsInt
46
+ ) -> numpy.typing.NDArray[numpy.uint32]: ...
40
47
  def __hash__(self) -> int: ...
41
48
  def __init__(
42
49
  self,
43
- array_shape: tuple[int, int, int],
44
- default_array: int | IndexArray3D | typing_extensions.Buffer,
50
+ array_shape: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt],
51
+ default_array: (
52
+ typing.SupportsInt
53
+ | amulet.core.chunk.component.section_array_map.IndexArray3D
54
+ | collections.abc.Buffer
55
+ ),
45
56
  ) -> None: ...
46
57
  def __iter__(self) -> collections.abc.Iterator[int]: ...
47
58
  def __len__(self) -> int: ...
48
59
  def __setitem__(
49
- self, arg0: int, arg1: IndexArray3D | typing_extensions.Buffer
60
+ self,
61
+ arg0: typing.SupportsInt,
62
+ arg1: (
63
+ amulet.core.chunk.component.section_array_map.IndexArray3D
64
+ | collections.abc.Buffer
65
+ ),
50
66
  ) -> None: ...
51
67
  def get(
52
- self, key: int, default: numpy.typing.NDArray[numpy.uint32] | None = None
68
+ self,
69
+ key: typing.SupportsInt,
70
+ default: numpy.typing.NDArray[numpy.uint32] | None = None,
53
71
  ) -> numpy.typing.NDArray[numpy.uint32] | None: ...
54
72
  def items(
55
73
  self,
56
74
  ) -> collections.abc.ItemsView[int, numpy.typing.NDArray[numpy.uint32]]: ...
57
75
  def keys(self) -> collections.abc.KeysView[int]: ...
58
76
  def pop(
59
- self, key: int, default: numpy.typing.NDArray[numpy.uint32] = ...
77
+ self, key: typing.SupportsInt, default: numpy.typing.NDArray[numpy.uint32] = ...
60
78
  ) -> numpy.typing.NDArray[numpy.uint32]: ...
61
79
  def popitem(self) -> tuple[int, numpy.typing.NDArray[numpy.uint32]]: ...
62
- def populate(self, arg0: int) -> None: ...
80
+ def populate(self, arg0: typing.SupportsInt) -> None: ...
63
81
  def setdefault(
64
- self, arg0: int, arg1: numpy.typing.NDArray[numpy.uint32] | None
82
+ self, arg0: typing.SupportsInt, arg1: numpy.typing.NDArray[numpy.uint32] | None
65
83
  ) -> numpy.typing.NDArray[numpy.uint32] | None: ...
66
84
  def update(self, other: typing.Any = (), **kwargs: typing.Any) -> None: ...
67
85
  def values(
@@ -73,5 +91,10 @@ class SectionArrayMap:
73
91
  def default_array(self) -> int | numpy.ndarray: ...
74
92
  @default_array.setter
75
93
  def default_array(
76
- self, arg1: int | IndexArray3D | typing_extensions.Buffer
94
+ self,
95
+ arg1: (
96
+ typing.SupportsInt
97
+ | amulet.core.chunk.component.section_array_map.IndexArray3D
98
+ | collections.abc.Buffer
99
+ ),
77
100
  ) -> None: ...
@@ -24,9 +24,9 @@ class Entity(amulet.core.version.PlatformVersionContainer):
24
24
  version: amulet.core.version.VersionNumber,
25
25
  namespace: str,
26
26
  base_name: str,
27
- x: float,
28
- y: float,
29
- z: float,
27
+ x: typing.SupportsFloat,
28
+ y: typing.SupportsFloat,
29
+ z: typing.SupportsFloat,
30
30
  nbt: amulet.nbt.NamedTag,
31
31
  ) -> None: ...
32
32
  def __repr__(self) -> str: ...
@@ -86,7 +86,7 @@ class Entity(amulet.core.version.PlatformVersionContainer):
86
86
  """
87
87
 
88
88
  @x.setter
89
- def x(self, arg1: float) -> None: ...
89
+ def x(self, arg1: typing.SupportsFloat) -> None: ...
90
90
  @property
91
91
  def y(self) -> float:
92
92
  """
@@ -94,7 +94,7 @@ class Entity(amulet.core.version.PlatformVersionContainer):
94
94
  """
95
95
 
96
96
  @y.setter
97
- def y(self, arg1: float) -> None: ...
97
+ def y(self, arg1: typing.SupportsFloat) -> None: ...
98
98
  @property
99
99
  def z(self) -> float:
100
100
  """
@@ -102,4 +102,4 @@ class Entity(amulet.core.version.PlatformVersionContainer):
102
102
  """
103
103
 
104
104
  @z.setter
105
- def z(self, arg1: float) -> None: ...
105
+ def z(self, arg1: typing.SupportsFloat) -> None: ...
@@ -10,11 +10,11 @@ __all__ = ["BiomePalette"]
10
10
 
11
11
  class BiomePalette(amulet.core.version.VersionRangeContainer):
12
12
  @typing.overload
13
- def __contains__(self, arg0: int) -> bool: ...
13
+ def __contains__(self, arg0: typing.SupportsInt) -> bool: ...
14
14
  @typing.overload
15
15
  def __contains__(self, arg0: amulet.core.biome.Biome) -> bool: ...
16
16
  @typing.overload
17
- def __getitem__(self, arg0: int) -> amulet.core.biome.Biome: ...
17
+ def __getitem__(self, arg0: typing.SupportsInt) -> amulet.core.biome.Biome: ...
18
18
  @typing.overload
19
19
  def __getitem__(self, arg0: slice) -> list: ...
20
20
  def __init__(self, arg0: amulet.core.version.VersionRange) -> None: ...
@@ -33,9 +33,12 @@ class BiomePalette(amulet.core.version.VersionRangeContainer):
33
33
 
34
34
  def count(self, value: typing.Any) -> int: ...
35
35
  def index(
36
- self, value: typing.Any, start: int = 0, stop: int = 9223372036854775807
36
+ self,
37
+ value: typing.Any,
38
+ start: typing.SupportsInt = 0,
39
+ stop: typing.SupportsInt = 9223372036854775807,
37
40
  ) -> int: ...
38
- def index_to_biome(self, arg0: int) -> amulet.core.biome.Biome:
41
+ def index_to_biome(self, arg0: typing.SupportsInt) -> amulet.core.biome.Biome:
39
42
  """
40
43
  Get the biome at the specified palette index.
41
44
 
@@ -10,11 +10,11 @@ __all__ = ["BlockPalette"]
10
10
 
11
11
  class BlockPalette(amulet.core.version.VersionRangeContainer):
12
12
  @typing.overload
13
- def __contains__(self, arg0: int) -> bool: ...
13
+ def __contains__(self, arg0: typing.SupportsInt) -> bool: ...
14
14
  @typing.overload
15
15
  def __contains__(self, arg0: amulet.core.block.BlockStack) -> bool: ...
16
16
  @typing.overload
17
- def __getitem__(self, arg0: int) -> amulet.core.block.BlockStack: ...
17
+ def __getitem__(self, arg0: typing.SupportsInt) -> amulet.core.block.BlockStack: ...
18
18
  @typing.overload
19
19
  def __getitem__(self, arg0: slice) -> list: ...
20
20
  def __init__(self, arg0: amulet.core.version.VersionRange) -> None: ...
@@ -35,9 +35,14 @@ class BlockPalette(amulet.core.version.VersionRangeContainer):
35
35
 
36
36
  def count(self, value: typing.Any) -> int: ...
37
37
  def index(
38
- self, value: typing.Any, start: int = 0, stop: int = 9223372036854775807
38
+ self,
39
+ value: typing.Any,
40
+ start: typing.SupportsInt = 0,
41
+ stop: typing.SupportsInt = 9223372036854775807,
39
42
  ) -> int: ...
40
- def index_to_block_stack(self, arg0: int) -> amulet.core.block.BlockStack:
43
+ def index_to_block_stack(
44
+ self, arg0: typing.SupportsInt
45
+ ) -> amulet.core.block.BlockStack:
41
46
  """
42
47
  Get the block stack at the specified palette index.
43
48
 
@@ -23,7 +23,13 @@ class SelectionBox:
23
23
  def __hash__(self) -> int: ...
24
24
  @typing.overload
25
25
  def __init__(
26
- self, min_x: int, min_y: int, min_z: int, size_x: int, size_y: int, size_z: int
26
+ self,
27
+ min_x: typing.SupportsInt,
28
+ min_y: typing.SupportsInt,
29
+ min_z: typing.SupportsInt,
30
+ size_x: typing.SupportsInt,
31
+ size_y: typing.SupportsInt,
32
+ size_z: typing.SupportsInt,
27
33
  ) -> None:
28
34
  """
29
35
  Construct a new SelectionBox instance.
@@ -41,7 +47,9 @@ class SelectionBox:
41
47
 
42
48
  @typing.overload
43
49
  def __init__(
44
- self, point_1: tuple[int, int, int], point_2: tuple[int, int, int]
50
+ self,
51
+ point_1: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt],
52
+ point_2: tuple[typing.SupportsInt, typing.SupportsInt, typing.SupportsInt],
45
53
  ) -> None:
46
54
  """
47
55
  Construct a new SelectionBox instance.
@@ -57,7 +65,9 @@ class SelectionBox:
57
65
  def __lt__(self, arg0: SelectionBox) -> bool: ...
58
66
  def __repr__(self) -> str: ...
59
67
  def __str__(self) -> str: ...
60
- def contains_block(self, x: int, y: int, z: int) -> bool:
68
+ def contains_block(
69
+ self, x: typing.SupportsInt, y: typing.SupportsInt, z: typing.SupportsInt
70
+ ) -> bool:
61
71
  """
62
72
  Is the block contained within the selection.
63
73
 
@@ -79,7 +89,9 @@ class SelectionBox:
79
89
  :return: True if other fits in self, False otherwise.
80
90
  """
81
91
 
82
- def contains_point(self, x: float, y: float, z: float) -> bool:
92
+ def contains_point(
93
+ self, x: typing.SupportsFloat, y: typing.SupportsFloat, z: typing.SupportsFloat
94
+ ) -> bool:
83
95
  """
84
96
  Is the point contained within the selection.
85
97
 
@@ -120,7 +132,9 @@ class SelectionBox:
120
132
  :return: True if the two :class:`SelectionBox` instances touch or intersect, False otherwise.
121
133
  """
122
134
 
123
- def translate(self, x: int, y: int, z: int) -> SelectionBox:
135
+ def translate(
136
+ self, x: typing.SupportsInt, y: typing.SupportsInt, z: typing.SupportsInt
137
+ ) -> SelectionBox:
124
138
  """
125
139
  Create a new :class:`SelectionBox` based on this one with the coordinates moved by the given offset.
126
140
 
@@ -63,7 +63,9 @@ class SelectionGroup:
63
63
  >>> ])
64
64
  """
65
65
 
66
- def __iter__(self) -> typing.Iterator[amulet.core.selection.box.SelectionBox]:
66
+ def __iter__(
67
+ self,
68
+ ) -> collections.abc.Iterator[amulet.core.selection.box.SelectionBox]:
67
69
  """
68
70
  An iterable of all the :class:`SelectionBox` classes in the group.
69
71
  """
@@ -75,7 +77,9 @@ class SelectionGroup:
75
77
 
76
78
  def __repr__(self) -> str: ...
77
79
  def __str__(self) -> str: ...
78
- def contains_block(self, x: int, y: int, z: int) -> bool:
80
+ def contains_block(
81
+ self, x: typing.SupportsInt, y: typing.SupportsInt, z: typing.SupportsInt
82
+ ) -> bool:
79
83
  """
80
84
  Is the block contained within the selection.
81
85
 
@@ -89,7 +93,9 @@ class SelectionGroup:
89
93
  :return: True if the block is in the selection.
90
94
  """
91
95
 
92
- def contains_point(self, x: float, y: float, z: float) -> bool:
96
+ def contains_point(
97
+ self, x: typing.SupportsFloat, y: typing.SupportsFloat, z: typing.SupportsFloat
98
+ ) -> bool:
93
99
  """
94
100
  Is the point contained within the selection.
95
101
 
@@ -114,7 +120,9 @@ class SelectionGroup:
114
120
 
115
121
  @typing.overload
116
122
  def intersects(self, other: SelectionGroup) -> bool: ...
117
- def translate(self, x: int, y: int, z: int) -> SelectionGroup:
123
+ def translate(
124
+ self, x: typing.SupportsInt, y: typing.SupportsInt, z: typing.SupportsInt
125
+ ) -> SelectionGroup:
118
126
  """
119
127
  Create a new :class:`SelectionGroup` based on this one with the coordinates moved by the given offset.
120
128
 
@@ -207,7 +215,7 @@ class SelectionGroup:
207
215
  @property
208
216
  def selection_boxes(
209
217
  self,
210
- ) -> typing.Iterator[amulet.core.selection.box.SelectionBox]:
218
+ ) -> collections.abc.Iterator[amulet.core.selection.box.SelectionBox]:
211
219
  """
212
220
  An iterator of the :class:`SelectionBox` instances stored for this group.
213
221
  """
@@ -1,5 +1,6 @@
1
1
  from __future__ import annotations
2
2
 
3
+ import collections.abc
3
4
  import types
4
5
  import typing
5
6
  from builtins import str as PlatformType
@@ -48,7 +49,7 @@ class VersionNumber:
48
49
  >>> v3 = VersionNumber(3578)
49
50
  """
50
51
 
51
- def __contains__(self, arg0: int) -> bool: ...
52
+ def __contains__(self, arg0: typing.SupportsInt) -> bool: ...
52
53
  @typing.overload
53
54
  def __eq__(self, arg0: VersionNumber) -> bool: ...
54
55
  @typing.overload
@@ -61,23 +62,26 @@ class VersionNumber:
61
62
  def __gt__(self, arg0: VersionNumber) -> bool: ...
62
63
  def __hash__(self) -> int: ...
63
64
  def __init__(self, *args: typing.SupportsInt) -> None: ...
64
- def __iter__(self) -> typing.Iterator[int]: ...
65
+ def __iter__(self) -> collections.abc.Iterator[int]: ...
65
66
  def __le__(self, arg0: VersionNumber) -> bool: ...
66
67
  def __len__(self) -> int: ...
67
68
  def __lt__(self, arg0: VersionNumber) -> bool: ...
68
69
  def __repr__(self) -> str: ...
69
- def __reversed__(self) -> typing.Iterator[int]: ...
70
+ def __reversed__(self) -> collections.abc.Iterator[int]: ...
70
71
  def __str__(self) -> str: ...
71
- def count(self, value: int) -> int: ...
72
+ def count(self, value: typing.SupportsInt) -> int: ...
72
73
  def cropped_version(self) -> list[int]:
73
74
  """
74
75
  The version number with trailing zeros cut off.
75
76
  """
76
77
 
77
78
  def index(
78
- self, value: int, start: int = 0, stop: int = 18446744073709551615
79
+ self,
80
+ value: typing.SupportsInt,
81
+ start: typing.SupportsInt = 0,
82
+ stop: typing.SupportsInt = 18446744073709551615,
79
83
  ) -> int: ...
80
- def padded_version(self, len: int) -> list[int]:
84
+ def padded_version(self, len: typing.SupportsInt) -> list[int]:
81
85
  """
82
86
  Get the version number cropped or padded with zeros to the given length.
83
87
  """
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: amulet-core
3
- Version: 2.0.3a3.post250715095759
3
+ Version: 2.0.4a0.post250728102705
4
4
  Summary: A Python library for reading/writing Minecraft's various save formats.
5
5
  Author: James Clare, Ben Gothard
6
6
  Project-URL: Homepage, https://www.amuletmc.com
@@ -11,12 +11,12 @@ Classifier: Operating System :: OS Independent
11
11
  Requires-Python: >=3.11
12
12
  Description-Content-Type: text/markdown
13
13
  Requires-Dist: amulet-compiler-target==2.0
14
- Requires-Dist: amulet-compiler-version==3.0.0.1297307203.19.44.35211.0
15
- Requires-Dist: pybind11==2.13.6
14
+ Requires-Dist: amulet-compiler-version==3.0.0.1297307203.19.44.35213.0
15
+ Requires-Dist: pybind11==3.0.0
16
16
  Requires-Dist: amulet-pybind11-extensions~=1.1.0.0a0
17
17
  Requires-Dist: amulet-io~=1.0.0.0
18
- Requires-Dist: amulet-zlib~=1.0.0.0a7
19
- Requires-Dist: amulet-nbt~=5.0.0.0a7
18
+ Requires-Dist: amulet-zlib~=1.0.1.0a0
19
+ Requires-Dist: amulet-nbt~=5.0.1.0a0
20
20
  Requires-Dist: numpy~=2.0
21
21
  Provides-Extra: docs
22
22
  Requires-Dist: Sphinx>=1.7.4; extra == "docs"
@@ -1,9 +1,10 @@
1
1
  amulet/core/__init__.py,sha256=XSgXjSNSWxln5yn1US9dA7fLkB2ZgpHNu-Zd2i8AyWU,953
2
- amulet/core/_amulet_core.cp312-win_amd64.pyd,sha256=HME7p9K-5R-3drsdkt8XT9hJLQRWPn_WDc_TDQavBsA,639488
2
+ amulet/core/__init__.pyi,sha256=jotQVbNN5yY9FNylZK06uFftYXdvra6cd8IjV8E2DuA,445
3
+ amulet/core/_amulet_core.cp312-win_amd64.pyd,sha256=EnQfBTZeDn9vLbVQn4DXq293T91mZBF2apq1XNh2164,675328
3
4
  amulet/core/_amulet_core.pyi,sha256=6KCygVcKCdfcpjegv7RMDgxKh9M6F-IHNhPUNGZAlyQ,123
4
- amulet/core/_version.py,sha256=8GdG9LnY46O4LEYVahJpuQyUKcnwFZY1MFFIU-Ut6pM,520
5
- amulet/core/amulet_core.dll,sha256=7jkIK-jQq3997uOmJcNQJK2t_FKEeqrsyerTUeli9os,157184
6
- amulet/core/amulet_core.lib,sha256=oZ_aGVBQbwaiWvVoORvsfUaPKvDQgm_6ep2npADMcuI,45970
5
+ amulet/core/_version.py,sha256=39l9M6Y3Dn_nFlG4ghIUDW1Z4i2HUz0U81tseiBwkNE,520
6
+ amulet/core/amulet_core.dll,sha256=x_o7ctncMSbH0f4Y4HpX7op12VeWRc_6bCDbutM28OY,157184
7
+ amulet/core/amulet_core.lib,sha256=EvQGjRGscV1gYXRPMFyL-P3JuTUYH-Yfyx5tlUoa_04,45970
7
8
  amulet/core/amulet_coreConfig.cmake,sha256=lIMT2iokqBGeWo1_gHlYIXNDge5htq7orPeRiqBZuFg,876
8
9
  amulet/core/dll.hpp,sha256=pyhd9lh570R1Qi7TPPnKoiB-fAFmQan8Vnk-oZmuK70,586
9
10
  amulet/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -11,7 +12,7 @@ amulet/core/__pyinstaller/__init__.py,sha256=vNM3T3GSrs58ywzILHdIsQP2sglKq6Jn4qw
11
12
  amulet/core/__pyinstaller/hook-amulet.core.py,sha256=AmV845T4BRjex63_T_KCeKLUlV0DxEk6aWsUJaLqyGE,172
12
13
  amulet/core/biome/__init__.pyi,sha256=rRxGRmd4vq1BlYysmo0SdRYEVzNzyGTbn_hpRHrrdIk,2157
13
14
  amulet/core/biome/biome.hpp,sha256=6RftLCHa4jVLr3lmRU8RIuA4K5REU-1J8SmJts7Ty0Y,1539
14
- amulet/core/block/__init__.pyi,sha256=BMiVVmYDzFABg-Y5I0T7YcmLZRK8N-AL2YCcFD7Ue8w,9592
15
+ amulet/core/block/__init__.pyi,sha256=Iv3EYrZ1JPM-37_AYEHVlUK_s_qhctUJunYewmRs1Yg,9684
15
16
  amulet/core/block/block.hpp,sha256=iRZyFKwfM7tbiXaHN6MNZeedpVr8SZkkKPPm20Tkgbo,4702
16
17
  amulet/core/block_entity/__init__.pyi,sha256=95L-jlRnn4hTin13m_7f72M0uFkP4DQNE1T1PsA3eys,2159
17
18
  amulet/core/block_entity/block_entity.hpp,sha256=q_8rzz4JCQ-L4q025G-ooQ2G47Hf6hyn3Wou4GZZ1Dc,2277
@@ -20,26 +21,26 @@ amulet/core/chunk/chunk.hpp,sha256=r3s5nPd60XwTyulG8xA7VdPH72OwDFwD-32faKp75ds,3
20
21
  amulet/core/chunk/component/__init__.pyi,sha256=stjIjJy7yTVxicTbxsUh6H_57BvHRiNexqTWA0khlyQ,450
21
22
  amulet/core/chunk/component/biome_3d_component.hpp,sha256=qtBGznXfxGh44GMrm5QwjyooCLhIXySuozyRWuBo1cA,3281
22
23
  amulet/core/chunk/component/block_component.hpp,sha256=JFk1O1IBWWX9-blvQN0Kv1xNUuWYWpMxkPB6jzIoG2w,3361
23
- amulet/core/chunk/component/block_component.pyi,sha256=Yn19Tm9S-ekqXJGcwOMBe3fiAgvZDT7GkVvBHjhdaIY,839
24
+ amulet/core/chunk/component/block_component.pyi,sha256=NaaPkl9wFP0331XMGmoGD2dQH_sjdspuc3Bm5HigzkE,884
24
25
  amulet/core/chunk/component/block_entity_component.hpp,sha256=wCv7Im03GqPoTLmtt0bmvxrS12kJN_qjzqONuRZ2YmE,3918
25
26
  amulet/core/chunk/component/section_array_map.hpp,sha256=V_WAG56rz3SAUWMMLgoPAhY3faH3t4Egg9_PsSERueE,3855
26
- amulet/core/chunk/component/section_array_map.pyi,sha256=8Ws6Amv9WlDkJh-_WDY5ruT2IHaupnUo6jsnywbdtqs,2718
27
- amulet/core/entity/__init__.pyi,sha256=YNHd5CO245N678jRMkIRryt8BmMqwVqIglEx0UZ77VQ,2573
27
+ amulet/core/chunk/component/section_array_map.pyi,sha256=FVsobxk9dAqmjj0YbhO9HOC6h9LSjVHIvk-pDIX1NgU,3380
28
+ amulet/core/entity/__init__.pyi,sha256=fuw6s2Yofb__qe9yN1zuzY2XZ5D32ekAcKJmbtGhy8o,2663
28
29
  amulet/core/entity/entity.hpp,sha256=02TsWsA2XNmULM92lx0Wby-exVur4Myncu_IY_a2KQ4,2911
29
30
  amulet/core/palette/__init__.pyi,sha256=_QLcDg5WSp-Y67CAUoa-EmA6zptftMvJtX8FfeDZJM8,284
30
31
  amulet/core/palette/biome_palette.hpp,sha256=V4OWp4TpLu0rXnyFM-UyP5rFzWhmtqP5MWbDjQC0nX8,2033
31
- amulet/core/palette/biome_palette.pyi,sha256=vcQahmsRxVy0Y2J96Wk5is0t4FSUiRBZ6V5buSGwsSs,1652
32
+ amulet/core/palette/biome_palette.pyi,sha256=ouCF-PidfUr4UhGcX3umtuFc1m3tNi4zLmW9o9Xwd18,1755
32
33
  amulet/core/palette/block_palette.hpp,sha256=e_LLR444vkbMO3KR5xhx0scIcgfd1HqEKyMiwqXqheY,2307
33
- amulet/core/palette/block_palette.pyi,sha256=dkNqcDYFHVQ8hKzEe48pa4SNlfQbvwWMwxVVYr4s09g,1779
34
+ amulet/core/palette/block_palette.pyi,sha256=TV76JhWSiSGVtsJ-SVisfV2pXdwZ3j9MYH4qbsxJeLo,1898
34
35
  amulet/core/selection/__init__.pyi,sha256=STDthuVyAmuNrLp_uCvy-Nn54k8dzKZV1d0jM_KHu4g,238
35
36
  amulet/core/selection/box.hpp,sha256=WfQiXqRMSbaaxnVhpfdP4VzDhSIx3mnnakoGrZKv2aQ,3031
36
- amulet/core/selection/box.pyi,sha256=wwHCJAjZYmR_cKfOBWmmdggq5sHZO5R4bGuWp2GWvM0,6426
37
+ amulet/core/selection/box.pyi,sha256=NdfcsRQEzlS5696D_UOePOzJNbg-YVxdjsVqrR84y_c,6863
37
38
  amulet/core/selection/group.hpp,sha256=xK07faXoiVePn9v7sJ_oZJfie3lqgzcOuGkdRe4BsUA,2292
38
- amulet/core/selection/group.pyi,sha256=0dbn4ZCh7D2PFhzLbGuuS1Mr_WIo-sWtugxe4grWB8s,6401
39
- amulet/core/version/__init__.pyi,sha256=0-2azYaixOPPVeXGGy_JKZTeFHy6IP6z-hgfZ3WaxWs,4104
39
+ amulet/core/selection/group.pyi,sha256=dGXFuDJR77S2iTF-Kbwh1C6AxijQQiUY_a7s6ODaUPQ,6619
40
+ amulet/core/version/__init__.pyi,sha256=GjP25QNT6-zHaulDMpFBg0RK4ggwcmR0LvKTvhW1Rio,4264
40
41
  amulet/core/version/version.hpp,sha256=yVc_uhBgmHQ0Evo73rXXoRwSQMHakUQxSYR3_fu2KH4,6506
41
- amulet_core-2.0.3a3.post250715095759.dist-info/METADATA,sha256=fYlsSwbmqalHT-MLDUPlCoBTRgEJk52pnXNC0Kl6wp4,5082
42
- amulet_core-2.0.3a3.post250715095759.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
43
- amulet_core-2.0.3a3.post250715095759.dist-info/entry_points.txt,sha256=a64mqk_dgbzVyk-pz0WKpK6kNAhIGdVT9DO2VqDIAc8,68
44
- amulet_core-2.0.3a3.post250715095759.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
45
- amulet_core-2.0.3a3.post250715095759.dist-info/RECORD,,
42
+ amulet_core-2.0.4a0.post250728102705.dist-info/METADATA,sha256=gbc111U1E1kMHp2td7aUGjizYIL3lruN2jhlVBzLMY8,5081
43
+ amulet_core-2.0.4a0.post250728102705.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
44
+ amulet_core-2.0.4a0.post250728102705.dist-info/entry_points.txt,sha256=a64mqk_dgbzVyk-pz0WKpK6kNAhIGdVT9DO2VqDIAc8,68
45
+ amulet_core-2.0.4a0.post250728102705.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
46
+ amulet_core-2.0.4a0.post250728102705.dist-info/RECORD,,