3.0.0-SNAPSHOT-#1

This commit is contained in:
2022-11-03 19:15:07 +01:00
parent 758d5e7a8d
commit d9206e63a7
30 changed files with 555 additions and 239 deletions

View File

@@ -1,8 +1,12 @@
package net.t2code.opsecurity.objects;
import lombok.Getter;
import java.util.HashMap;
public class PlayerCash {
public static HashMap<String, PlayerObject> opHashMap = new HashMap<String, PlayerObject>();
public static HashMap<String, PlayerObject> permissionHashMap = new HashMap<String, PlayerObject>();
@Getter
private static HashMap<String, PlayerObject> opHashMap = new HashMap<String, PlayerObject>();
@Getter
private static HashMap<String, PlayerObject> permissionHashMap = new HashMap<String, PlayerObject>();
}