blob: a304dba5fe266e6f661f7f1d640c38fe7830b166 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package NET.worlds.scape;
class ObjEditorDialog extends ObjectSelectorDialog {
ObjEditorDialog(EditTile parent, String title, Property property, SuperRoot r, Class clas) {
super(parent, title, property, r, clas);
}
@Override
protected void addIt(Property p, Object obj) {
this.parent.addUndoableSet(p, obj);
}
}
|