Local cache defined.

This commit is contained in:
2024-02-18 11:00:56 -05:00
parent 0d8b8504b4
commit 129eb1b818
2 changed files with 25 additions and 12 deletions
+25
View File
@@ -0,0 +1,25 @@
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
// Magicbane Emulator Project © 2013 - 2022
// www.magicbane.com
package engine.objects;
import org.json.simple.JSONObject;
import java.util.HashMap;
public class ItemTemplate {
public static HashMap<Integer, ItemTemplate> itemTemplates = new HashMap<>();
public ItemTemplate(JSONObject jsonObject) {
}
}
-12
View File
@@ -1,12 +0,0 @@
package engine.objects;
import org.json.simple.JSONObject;
public class itemTemplate {
public itemTemplate(JSONObject jsonObject) {
}
}