summaryrefslogtreecommitdiff
path: root/NET/worlds/scape/LibEntContentPropertyEditor.java
blob: b7890fa893f9cafc21e8fb1a22c5480165408e00 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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));
   }
}