// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2009.12.04 at 09:59:29 PM EET // package com.aionemu.gameserver.skillengine.condition; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; import com.aionemu.gameserver.skillengine.model.Skill; /** * @author ATracer */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrowCheckCondition") public class ArrowCheckCondition extends Condition { @Override public boolean verify(Skill skill) { //TODO return true; } }