From c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Thu, 12 Feb 2026 22:33:32 -0800 Subject: Initial commit --- NET/worlds/scape/Point2PropertyEditor.java | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 NET/worlds/scape/Point2PropertyEditor.java (limited to 'NET/worlds/scape/Point2PropertyEditor.java') diff --git a/NET/worlds/scape/Point2PropertyEditor.java b/NET/worlds/scape/Point2PropertyEditor.java new file mode 100644 index 0000000..58ea863 --- /dev/null +++ b/NET/worlds/scape/Point2PropertyEditor.java @@ -0,0 +1,19 @@ +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)); + } +} -- cgit v1.2.3