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