create config

This commit is contained in:
2022-11-03 02:29:26 +01:00
parent d4f60d78b8
commit 2b5520d115
24 changed files with 2067 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
package net.t2code.opsecurity.objects;
import java.util.UUID;
public class PlayerObject {
public String playerName;
public String uuid;
public PlayerObject(String playerName, String uuid) {
this.playerName = playerName;
this.uuid = uuid;
}
}