Finish sign support

This commit is contained in:
gomeow
2013-05-05 22:03:13 -07:00
parent bb7c27412a
commit bb0183e6c7
4 changed files with 51 additions and 13 deletions
@@ -4,12 +4,22 @@ public class SignSetInfo {
private String o;
private int i;
private boolean self = false;
public SignSetInfo(String o, int i) {
this.o = o;
this.i = i;
}
public SignSetInfo(int i) {
this.i = i;
this.self = true;
}
public boolean isSelf() {
return this.self;
}
public String getOwner() {
return this.o;
}