TroisquartOrc.java :  » Game » androidnfl » com » nfl » personnages » Android Open Source

Android Open Source » Game » androidnfl 
androidnfl » com » nfl » personnages » TroisquartOrc.java
package com.nfl.personnages;

import java.util.EnumSet;

public class TroisquartOrc extends Orc
{

  public static final int ORC_TROISQUART_FORCE = 3;
  public static final int ORC_TROISQUART_RESISTANCE = 8;
  public static final int ORC_TROISQUART_MOUVEMENT = 4;
  public static final int ORC_TROISQUART_AGILITE = 3;
  public static final int ORC_TROISQUART_VIE = 3;
  public static final EnumSet<ECompetences> ORC_TROISQUART_SKILLS = null;
  
  public TroisquartOrc()
  {
    super(ERole.Troisquart, ORC_TROISQUART_SKILLS, ORC_TROISQUART_FORCE, ORC_TROISQUART_RESISTANCE, ORC_TROISQUART_MOUVEMENT, ORC_TROISQUART_AGILITE, ORC_TROISQUART_VIE);
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.