1
0
mirror of https://github.com/Rogiel/l2jserver2 synced 2025-12-12 02:02:51 +00:00

Implemented NPC and Actor calculators. Updated L2Character calculators

to match abstraction

Signed-off-by: Rogiel <rogiel@rogiel.com>
This commit is contained in:
2011-05-30 17:58:28 -03:00
parent 321092ac15
commit 52d4be0bf2
98 changed files with 3333 additions and 1442 deletions

View File

@@ -19,6 +19,7 @@ package com.l2jserver.model.world;
import com.l2jserver.model.id.object.CharacterID;
import com.l2jserver.model.id.object.ItemID;
import com.l2jserver.model.id.template.ActorTemplateID;
import com.l2jserver.model.world.actor.stat.ActorStats;
/**
* This class represents an Pet in the Lineage II World
@@ -82,4 +83,13 @@ public class Pet extends Player {
public void setItemID(ItemID itemID) {
this.itemID = itemID;
}
/* (non-Javadoc)
* @see com.l2jserver.model.world.Actor#getStats()
*/
@Override
public ActorStats<?> getStats() {
// TODO Auto-generated method stub
return null;
}
}