Package cardgamecard

Examples of cardgamecard.CGBattleSetCard


        for( CGIEvent ev : events.get(BEFORE_STEP_EVENT) ){
           
        }
       
        //Подсвечиваем активную карту игрока, которая щас ходит
        CGBattleSetCard card_set = mPlayers[curPlayer%2].BattleCards();
        curCard = card_set.nextStepCard();
        curCard.setActive(true);
    }
View Full Code Here


    int mLevel;         //Уровень
   
   
    public CGPlayer(){
        mCards = new ArrayList<CGBaseCard>();
        mSetBattleCards = new CGBattleSetCard();
    }
View Full Code Here

TOP

Related Classes of cardgamecard.CGBattleSetCard

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.