amulet-core 2.0.1.0.309027957683952396889703.15.0.0.15000309a1__cp313-cp313-macosx_10_15_universal2.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.
- amulet/core/__init__.py +36 -0
- amulet/core/__pyinstaller/__init__.py +2 -0
- amulet/core/__pyinstaller/hook-amulet.core.py +4 -0
- amulet/core/_amulet_core.cpython-313-darwin.so +0 -0
- amulet/core/_amulet_core.pyi +7 -0
- amulet/core/_version.py +21 -0
- amulet/core/amulet_coreConfig.cmake +18 -0
- amulet/core/biome/__init__.pyi +75 -0
- amulet/core/biome/biome.hpp +53 -0
- amulet/core/block/__init__.pyi +270 -0
- amulet/core/block/block.hpp +156 -0
- amulet/core/block_entity/__init__.pyi +78 -0
- amulet/core/block_entity/block_entity.hpp +84 -0
- amulet/core/chunk/__init__.pyi +67 -0
- amulet/core/chunk/chunk.hpp +126 -0
- amulet/core/chunk/component/__init__.pyi +18 -0
- amulet/core/chunk/component/biome_3d_component.hpp +96 -0
- amulet/core/chunk/component/block_component.hpp +101 -0
- amulet/core/chunk/component/block_component.pyi +28 -0
- amulet/core/chunk/component/block_entity_component.hpp +119 -0
- amulet/core/chunk/component/section_array_map.hpp +129 -0
- amulet/core/chunk/component/section_array_map.pyi +77 -0
- amulet/core/dll.hpp +21 -0
- amulet/core/entity/__init__.pyi +105 -0
- amulet/core/entity/entity.hpp +100 -0
- amulet/core/libamulet_core.dylib +0 -0
- amulet/core/palette/__init__.pyi +8 -0
- amulet/core/palette/biome_palette.hpp +65 -0
- amulet/core/palette/biome_palette.pyi +45 -0
- amulet/core/palette/block_palette.hpp +71 -0
- amulet/core/palette/block_palette.pyi +47 -0
- amulet/core/py.typed +0 -0
- amulet/core/selection/__init__.pyi +8 -0
- amulet/core/selection/box.hpp +86 -0
- amulet/core/selection/box.pyi +215 -0
- amulet/core/selection/group.hpp +80 -0
- amulet/core/selection/group.pyi +213 -0
- amulet/core/version/__init__.pyi +134 -0
- amulet/core/version/version.hpp +204 -0
- amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/METADATA +108 -0
- amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/RECORD +44 -0
- amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/WHEEL +5 -0
- amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/entry_points.txt +2 -0
- amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
amulet/core/__init__.py,sha256=4qZUoVy97GlmtDX0pquZVn_rJA3PbSfw2pF4Y7T_ZBQ,879
|
|
2
|
+
amulet/core/_amulet_core.cpython-313-darwin.so,sha256=39nxmXMK3730Tywbv3VCeT6p-jbyMaer5afW92IaZwg,3164944
|
|
3
|
+
amulet/core/_amulet_core.pyi,sha256=RC4JxpCfWkjeEJsOhyytiCrzLov1I4N4nzF9PHjwIvI,116
|
|
4
|
+
amulet/core/_version.py,sha256=TQ6LBPOWsVhFzF8sCb4L7qhXnXTqZJXMT8Wn0iD9DWw,499
|
|
5
|
+
amulet/core/amulet_coreConfig.cmake,sha256=geOsVw8QJs8DoNHGCWmOzYRKo9as9hku_kqUm8A_lrs,696
|
|
6
|
+
amulet/core/dll.hpp,sha256=_c9iVJsleEm4wqsbzZr18mJng7CjcNeHk3Uc0uyphVY,565
|
|
7
|
+
amulet/core/libamulet_core.dylib,sha256=TC53g5ea32DFiQUkXYWoRZfroKbfcvaDEVQirwjdT_U,2629632
|
|
8
|
+
amulet/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
amulet/core/__pyinstaller/__init__.py,sha256=D1_UuaYmG8_m59EtvoWT0apEUDJigfFPskLnnnzG9dw,54
|
|
10
|
+
amulet/core/__pyinstaller/hook-amulet.core.py,sha256=Byk3AkxwTBUi5bfCYQ3tAm9JWpEborm5Jz8B813ZBjQ,168
|
|
11
|
+
amulet/core/biome/__init__.pyi,sha256=ZulgFEwAr80p5iHpm4fsl_h9gJ1XWCNaLap1j2p0cJU,2082
|
|
12
|
+
amulet/core/biome/biome.hpp,sha256=2yIagr579svGynHX35VkJWKM7ZAQj4D-lX126LZpO7w,1486
|
|
13
|
+
amulet/core/block/__init__.pyi,sha256=7Wi7f6zD_r75ocxC2NHbttuey0roWONrT8gmC2Mvsjg,9322
|
|
14
|
+
amulet/core/block/block.hpp,sha256=M6fgE37_VkO_hcoBbt-_YCHILdrtdsp_uzMY44xXYNw,4546
|
|
15
|
+
amulet/core/block_entity/__init__.pyi,sha256=LE3ysPHCWxYZ88xnz6wx-ElssM6lJxhlveGneFxUJ-M,2081
|
|
16
|
+
amulet/core/block_entity/block_entity.hpp,sha256=SWVk6o0De2BJfWxomI4oWEDhvsFaFmPNcd5iiybWdJ0,2193
|
|
17
|
+
amulet/core/chunk/__init__.pyi,sha256=F5p4OpElw8yVB1futppnKOmWlPRiIhXYNO6qdRyiE8o,1879
|
|
18
|
+
amulet/core/chunk/chunk.hpp,sha256=TbdYHODG7pPpwk1i7DfvNxX9U4Nvkt1O4Hc4yVheipw,3789
|
|
19
|
+
amulet/core/chunk/component/__init__.pyi,sha256=fsgMcqjmIo6ap04rt37ICAjAxGl0-_T8YdFxt45qa2g,432
|
|
20
|
+
amulet/core/chunk/component/biome_3d_component.hpp,sha256=Xinc456GBMY3pQeYyVGvTQ11hnBrCiuPODnaiErdbGs,3042
|
|
21
|
+
amulet/core/chunk/component/block_component.hpp,sha256=wNePGEkPJXnPzsncnOhZA7YgjNHpJWrU9twX46O_akI,3260
|
|
22
|
+
amulet/core/chunk/component/block_component.pyi,sha256=P1YyOrVIpYFXX3KSzWDcv2yz6K3B4zOQlE1kwPodWPo,811
|
|
23
|
+
amulet/core/chunk/component/block_entity_component.hpp,sha256=6kSlqUK9fJzizadkIP2-Rw-70RV6LmE13J4Dr0GzyRg,3799
|
|
24
|
+
amulet/core/chunk/component/section_array_map.hpp,sha256=NUi6suTNqYBjklK-KjP3z5D4kKWNZf8mHku0jyvXzBE,3726
|
|
25
|
+
amulet/core/chunk/component/section_array_map.pyi,sha256=wmE5oEQj2wHXbPy-0MoNE3_HY1fPBXk_Qi8FFpBRtzE,2641
|
|
26
|
+
amulet/core/entity/__init__.pyi,sha256=hwkHhqDODPdSn16IvSSpkWgGaPzbEm-kCFWYpByv4Vs,2468
|
|
27
|
+
amulet/core/entity/entity.hpp,sha256=ieYDVtbfvIQ6tOKIp24O3-Ds9V41_0kWQGLVvxWLsdo,2811
|
|
28
|
+
amulet/core/palette/__init__.pyi,sha256=CpJwJ7wxz63lMtuzMKcPItU3MO64AuXcxdiCAecEZSw,276
|
|
29
|
+
amulet/core/palette/biome_palette.hpp,sha256=Cl-wx_kNvI519GfO0qTl0Jti-TvXJh0kfLWJaRkzXyE,1968
|
|
30
|
+
amulet/core/palette/biome_palette.pyi,sha256=rusrTnEGio3wEKzBcL5ZwLeJarXdwhLG-KuAvCJGgvY,1607
|
|
31
|
+
amulet/core/palette/block_palette.hpp,sha256=z14VBS_AEdxHHGqO4AmvuYtAZbG6LaWdFbmHFs-NkvQ,2236
|
|
32
|
+
amulet/core/palette/block_palette.pyi,sha256=UX-YGUjnTQtYBDIKpcf_wSxFZOYK70DWGElmv2kZwc4,1732
|
|
33
|
+
amulet/core/selection/__init__.pyi,sha256=2iHaII7mpek54JPAdIsCifCruXiS5gal4Kl-4Ky2lIg,230
|
|
34
|
+
amulet/core/selection/box.hpp,sha256=DEc69g8K0dm9uI4-Fva67C7fByne09QEpMh33Td1owc,2945
|
|
35
|
+
amulet/core/selection/box.pyi,sha256=hr-xTikwNYMPrsSb_AcoX6oDLPrXDRf5UgBsdfs_MLQ,6211
|
|
36
|
+
amulet/core/selection/group.hpp,sha256=S2BneneTu9_KZhFRyGrad4D_x0b_ESvGJrCTThk8CB0,2212
|
|
37
|
+
amulet/core/selection/group.pyi,sha256=BhX99JSLPClVbSEdWJYGaYTxlGZ-PCIcWISPImCOIF4,6188
|
|
38
|
+
amulet/core/version/__init__.pyi,sha256=SivnbYYDCHDVw-jRaKh1GeXE2FtoPqMdsMRbQ15W5AM,3970
|
|
39
|
+
amulet/core/version/version.hpp,sha256=B-galQVxLUYYC78TPn6wRqRi0QLitgTjnrbCmgZ84Mw,6302
|
|
40
|
+
amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/METADATA,sha256=0m_YcBQFDivXMH9AzMwAjiCNoWA_gtKkajSC3odInSA,4947
|
|
41
|
+
amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/WHEEL,sha256=p8919QvfHuz8sEl1v2xAIHXAuDZf2SHwBIqcYZCKFng,115
|
|
42
|
+
amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/entry_points.txt,sha256=a64mqk_dgbzVyk-pz0WKpK6kNAhIGdVT9DO2VqDIAc8,68
|
|
43
|
+
amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/top_level.txt,sha256=3ZqHzNDiIb9kV8TwSeeXxK_9haSrsu631Qe4ndDo0rc,7
|
|
44
|
+
amulet_core-2.0.1.0.309027957683952396889703.15.0.0.15000309a1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
amulet
|