diff options
author | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-12-09 20:26:05 -0700 |
---|---|---|
committer | Rachel Powers <508861+Ryex@users.noreply.github.com> | 2022-12-24 09:42:02 -0700 |
commit | 64c51a70a3aa110131fb6ad0cabc07ccfdcbb1c0 (patch) | |
tree | 81f97511a3bc54ba9bca3ec2639fd612bf641c9b /tests/testdata | |
parent | dd3848d7b161e415c34c3c1c393985b644a88f1c (diff) | |
download | PrismLauncher-64c51a70a3aa110131fb6ad0cabc07ccfdcbb1c0.tar.gz PrismLauncher-64c51a70a3aa110131fb6ad0cabc07ccfdcbb1c0.tar.bz2 PrismLauncher-64c51a70a3aa110131fb6ad0cabc07ccfdcbb1c0.zip |
feat: add initial support for parseing datapacks
Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
Diffstat (limited to 'tests/testdata')
-rw-r--r-- | tests/testdata/DataPackParse/another_test_folder/pack.mcmeta | 6 | ||||
-rw-r--r-- | tests/testdata/DataPackParse/test_data_pack_boogaloo.zip | bin | 0 -> 898 bytes | |||
-rw-r--r-- | tests/testdata/DataPackParse/test_folder/pack.mcmeta | 6 |
3 files changed, 12 insertions, 0 deletions
diff --git a/tests/testdata/DataPackParse/another_test_folder/pack.mcmeta b/tests/testdata/DataPackParse/another_test_folder/pack.mcmeta new file mode 100644 index 00000000..5509d007 --- /dev/null +++ b/tests/testdata/DataPackParse/another_test_folder/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 6, + "description": "Some data pack three, leaves on the tree" + } +} diff --git a/tests/testdata/DataPackParse/test_data_pack_boogaloo.zip b/tests/testdata/DataPackParse/test_data_pack_boogaloo.zip Binary files differnew file mode 100644 index 00000000..cb0b9f3c --- /dev/null +++ b/tests/testdata/DataPackParse/test_data_pack_boogaloo.zip diff --git a/tests/testdata/DataPackParse/test_folder/pack.mcmeta b/tests/testdata/DataPackParse/test_folder/pack.mcmeta new file mode 100644 index 00000000..dbfc7e9b --- /dev/null +++ b/tests/testdata/DataPackParse/test_folder/pack.mcmeta @@ -0,0 +1,6 @@ +{ + "pack": { + "pack_format": 10, + "description": "Some data pack, maybe" + } +} |