Start sign based accessing of Vaults

This commit is contained in:
gomeow
2013-04-22 16:32:44 -07:00
parent be1d53ed7e
commit b5fc36645e
6 changed files with 128 additions and 15 deletions
@@ -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;
}
}