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