Package org.jdesktop.mtgame.processor

Examples of org.jdesktop.mtgame.processor.WorkProcessor


public class SceneWorker {

    private static WorkProcessor workProcessor;

    SceneWorker(WorldManager worldManager) {
        workProcessor = new WorkProcessor("GlobalWorkProcessor", worldManager);
        Entity entity = new Entity("GlobalEntity");
        entity.addComponent(WorkProcessor.class, workProcessor);
        ClientContextJME.getWorldManager().addEntity(entity);
    }
View Full Code Here

TOP

Related Classes of org.jdesktop.mtgame.processor.WorkProcessor

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.