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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user