Package game.core

Examples of game.core.Counter


     * Initialise l'animation et le counter
     * @param guiModel
     */
    public TitleModel(final GUIModel guiModel) {
        Event.setTitleEvent(new TitleEvent(this));
        counter = new Counter();
        audioPlayer = new AudioPlayer(GeneralConstant.MUSIQUE_PATH + "title.mp3");
        audioPlayer.start();
        Collector.signaler(audioPlayer);
        animation = new TitleAnimation();
        Collector.signaler(animation);
View Full Code Here

TOP

Related Classes of game.core.Counter

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.