Package ch.fusun.baron.player.api

Examples of ch.fusun.baron.player.api.MarriageUpdate


    public MarriageServiceImpl() {
    }

    @Override
    public DataUpdate createFullUpdate() {
        return new MarriageUpdate(marriage, marriageProposals);
    }
View Full Code Here


            this.marriage.put(entry);
        }
        for (Entry<Player, Player> entry : marriageProposals.entrySet()) {
            this.marriageProposals.put(entry.getKey(), entry.getValue());
        }
        updateAllListeners(new MarriageUpdate(marriage, marriageProposals));
    }
View Full Code Here

TOP

Related Classes of ch.fusun.baron.player.api.MarriageUpdate

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.