From bcf569e4ce0a588a0da21f541f2597bac0308c09 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Thu, 29 Sep 2022 21:49:28 +0000 Subject: [PATCH] fix missing imports in DummyUI --- projects/nat-archive-tool/src/test/DummyUI.hx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/nat-archive-tool/src/test/DummyUI.hx b/projects/nat-archive-tool/src/test/DummyUI.hx index c9894a82..cbd3a132 100644 --- a/projects/nat-archive-tool/src/test/DummyUI.hx +++ b/projects/nat-archive-tool/src/test/DummyUI.hx @@ -1,8 +1,11 @@ package test; import nat.*; +import nat.systems.PlaygroundSystem; +import nat.components.Position; import nat.ArchiveController.ChangeSet; import haxe.ds.Option; +import kiss_tools.KeyShortcutHandler; class DummyUI implements ArchiveUI { public var controller:ArchiveController = null;