Package game.audioPlayer

Examples of game.audioPlayer.AudioPlayer


     * @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);
        animation.addObserver(this);
View Full Code Here

TOP

Related Classes of game.audioPlayer.AudioPlayer

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.