1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-11 09:42:54 +00:00

Calculator update

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-24 01:53:34 -03:00
parent a1b1211616
commit 6497016e14
43 changed files with 410 additions and 344 deletions

View File

@@ -17,6 +17,7 @@
package com.l2jserver.model.template;
import com.l2jserver.model.id.template.ItemTemplateID;
import com.l2jserver.model.world.Actor;
/**
* Template for effects
@@ -33,6 +34,16 @@ public abstract class EffectTemplate extends AbstractTemplate<Object> {
return null;
}
/**
* Adds this effect to the given <tt>actor</tt>
*
* @param actor
* the actor
*/
public void apply(Actor actor) {
}
@Override
public ItemTemplateID getID() {
return (ItemTemplateID) super.getID();