mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-31 22:22:49 +00:00
#509: Add support for PersistentDataContainer arrays
This commit is contained in:
parent
793c61eb40
commit
84f9ec2072
1 changed files with 5 additions and 0 deletions
|
@ -67,6 +67,11 @@ public interface PersistentDataType<T, Z> {
|
||||||
PersistentDataType<int[], int[]> INTEGER_ARRAY = new PrimitivePersistentDataType<>(int[].class);
|
PersistentDataType<int[], int[]> INTEGER_ARRAY = new PrimitivePersistentDataType<>(int[].class);
|
||||||
PersistentDataType<long[], long[]> LONG_ARRAY = new PrimitivePersistentDataType<>(long[].class);
|
PersistentDataType<long[], long[]> LONG_ARRAY = new PrimitivePersistentDataType<>(long[].class);
|
||||||
|
|
||||||
|
/*
|
||||||
|
Complex Arrays.
|
||||||
|
*/
|
||||||
|
PersistentDataType<PersistentDataContainer[], PersistentDataContainer[]> TAG_CONTAINER_ARRAY = new PrimitivePersistentDataType<>(PersistentDataContainer[].class);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Nested PersistentDataContainer.
|
Nested PersistentDataContainer.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Reference in a new issue