Package net.sourceforge.torchlight.core.data.creature

Examples of net.sourceforge.torchlight.core.data.creature.PlayerCharacter


        {
            logger.debug("obj is a PlayerCharacter");

            try
            {
                PlayerCharacter pc = (PlayerCharacter)obj;

                pc.setName(page1.getPlayerCharacterName());
                pc.setParticipant(page1.getParticipant());

                pc.setCampaign(campaign);

                return true;
            }
            catch(Exception e)
            {
View Full Code Here


//        params.put("participant", ); TODO

        try
        {
            logger.info("Creating player character...");
            PlayerCharacter pc = (PlayerCharacter)DataManager.getDataManager().createDataInstance(PlayerCharacter.class, runWizard, section.getCampaign(), params);
            logger.debug("pc: " + pc);

            if(pc != null)
            {
                logger.debug("saving object: " + pc);
View Full Code Here

TOP

Related Classes of net.sourceforge.torchlight.core.data.creature.PlayerCharacter

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.