Made XML Sandbox non-modal, using a glass pane

This commit is contained in:
Vhati 2013-09-03 19:01:56 -04:00
parent 376299dddd
commit c88ecf0bc8
4 changed files with 137 additions and 16 deletions

View file

@ -0,0 +1,16 @@
package net.vhati.modmanager.ui;
/*
* An interface to en/disable user interaction.
* It was written with JFrames and glass panes in mind.
*/
public interface Nerfable {
/*
* Either nerf or restore user interaction.
*
* @param b the nerfed state
*/
public void setNerfed( boolean b );
}