From 06cad72eaafdc147f4d929c74e88db5f95325e3b Mon Sep 17 00:00:00 2001 From: Graham Date: Sat, 12 Sep 2020 14:57:12 +0100 Subject: [PATCH] Add Js5Archive object This will eventually hold the names of each JS5 archive in 550, as and when I confirm the names from the NXT beta client still match up with the functionality of each archive in 550. Currently it only holds then name of index 255. Signed-off-by: Graham --- cache/src/main/java/dev/openrs2/cache/Js5Archive.kt | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 cache/src/main/java/dev/openrs2/cache/Js5Archive.kt diff --git a/cache/src/main/java/dev/openrs2/cache/Js5Archive.kt b/cache/src/main/java/dev/openrs2/cache/Js5Archive.kt new file mode 100644 index 0000000000..db2fd082e3 --- /dev/null +++ b/cache/src/main/java/dev/openrs2/cache/Js5Archive.kt @@ -0,0 +1,5 @@ +package dev.openrs2.cache + +public object Js5Archive { + public const val ARCHIVESET: Int = 255 +}