create config
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user