Package launch

Examples of launch.Parameters


    private static final Logger logger = Logger.getLogger(ClassName.getCurrentClassName());

    public static void startProgram(String[] params) {
        try {
            GameLauncher.InitGame(new Parameters(params)).beginGame();
        } catch (Exception e) {
            logger.error(e.toString(), e);
        }
    }
View Full Code Here

TOP

Related Classes of launch.Parameters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.