package NET.worlds.scape; import NET.worlds.console.PolledDialog; public class TransformPropertyEditor extends PropEditor { private TransformPropertyEditor(Property property) { super(property); } @Override public PolledDialog edit(EditTile parent, String title) { return new TransformEditorDialog(parent, title, this.property); } public static Property make(Property property) { property.setPropertyType(9); return property.setEditor(new TransformPropertyEditor(property)); } }