Package eu.semberal.migmang.events

Examples of eu.semberal.migmang.events.MigmangGameEvent


    }

    void fireNewGameStarted(int bilyObtiznost, int cernyObtiznost,
            PlayerType bilyTyp, PlayerType cernyTyp) {
        windowEventsListener.onGameStarted(new MigmangGameEvent(this, bilyObtiznost, cernyObtiznost, bilyTyp, cernyTyp));
    }
View Full Code Here


    void fireRedoMove() {
        windowEventsListener.onMoveForward();
    }

    void fireGameDataChanged(int bilyObtiznost, int cernyObtiznost, PlayerType bilyTyp, PlayerType cernyTyp) {
        windowEventsListener.onGameDataChanged(new MigmangGameEvent(this, bilyObtiznost, cernyObtiznost, bilyTyp, cernyTyp));
    }
View Full Code Here

TOP

Related Classes of eu.semberal.migmang.events.MigmangGameEvent

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.