Start sign based accessing of Vaults
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package com.drtshock.playervaults.commands;
|
||||
|
||||
public class SignSetInfo {
|
||||
|
||||
private String o;
|
||||
private int i;
|
||||
|
||||
public SignSetInfo(String o, int i) {
|
||||
this.o = o;
|
||||
this.i = i;
|
||||
}
|
||||
|
||||
public String getOwner() {
|
||||
return this.o;
|
||||
}
|
||||
|
||||
public int getChest() {
|
||||
return this.i;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user