Package com.sirenian.hellbound.engine

Examples of com.sirenian.hellbound.engine.Game


        this.guiQueue = guiQueue;
        this.heartbeat = heartbeat;
        Logger.debug(this, "Creating Hellbound instance...");

        frame = createFrameForGui(engineQueue, pitPanel);
        Game game = createEngineForGame(heartbeat, factory);
       
        connectQueues(game, pitPanel);
        bindThreadsToFrame();
        startHellbound();
    }
View Full Code Here


        guiQueue.stop();
        heartbeat.stop();
    }

    private Game createEngineForGame(Heartbeat heartbeat, GlyphFactory factory) {
        return new Game(factory, heartbeat, WIDTH, HEIGHT);
    }
View Full Code Here

TOP

Related Classes of com.sirenian.hellbound.engine.Game

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.