Create attractive VASL scenarios, with loads of useful information embedded to assist with game play. https://vasl-templates.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
vasl-templates/vassal-shim/src/vassal_shim/DummyLauncher.java

19 lines
612 B

package vassal_shim ;
import VASSAL.launch.Launcher ;
import VASSAL.tools.menu.MenuManager ;
import java.io.IOException ;
// --------------------------------------------------------------------
class DummyLauncher extends Launcher
{
public DummyLauncher() {
// FUDGE! The Launcher constructor does a lot of program initialization (which
// causes crashes), but running in stand-alone mode stops that from happening.
super( new String[]{ "--standalone" } ) ;
}
protected MenuManager createMenuManager() { return null ; }
protected void launch() throws IOException {}
}