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