diff options
Diffstat (limited to 'src/jake2/qcommon/Q2DataTest.java')
-rw-r--r-- | src/jake2/qcommon/Q2DataTest.java | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/jake2/qcommon/Q2DataTest.java b/src/jake2/qcommon/Q2DataTest.java new file mode 100644 index 0000000..9d76b0e --- /dev/null +++ b/src/jake2/qcommon/Q2DataTest.java @@ -0,0 +1,23 @@ +/* + * Q2DataTest.java + * Copyright Bytonic Software (C) 2004 + * + * $Id: Q2DataTest.java,v 1.1 2004-09-18 12:36:53 hzi Exp $ + */ +package jake2.qcommon; + +/** + * Q2DataTest + */ +public class Q2DataTest { + + static void run() { + while (FS.LoadFile("pics/colormap.pcx") == null) { + Q2DataDialog d = new Q2DataDialog(null, true); + d.setVisible(true); + try { + d.wait(); + } catch (Exception e) {} + } + } +} |