diff --git a/projects/nat-archive-tool/src/test/DummyUI.hx b/projects/nat-archive-tool/src/test/DummyUI.hx index 7cdd8d41..c9894a82 100644 --- a/projects/nat-archive-tool/src/test/DummyUI.hx +++ b/projects/nat-archive-tool/src/test/DummyUI.hx @@ -2,6 +2,7 @@ package test; import nat.*; import nat.ArchiveController.ChangeSet; +import haxe.ds.Option; class DummyUI implements ArchiveUI { public var controller:ArchiveController = null; @@ -35,4 +36,14 @@ class DummyUI implements ArchiveUI { public function reportError(error:String) {} public function onSelectionChanged(selectedEntries:Array, lastSelectedEntries:Array) {} + + public function showPrefixMap(map:Map>) {} + public function hidePrefixMap() {} + public function cursorPosition():Option { + return None; + }; + public function playgroundSystem():Null { + return null; + } + public var shortcutHandler:Null> = null; }