Skip to content

Commit

Permalink
Add missing methods to interface implementations in EOBot
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmoffat committed Sep 15, 2022
1 parent 967f279 commit 24b2be0
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions EOBot/Program.cs
Expand Up @@ -75,6 +75,10 @@ public void StartNPCWalkAnimation(int npcIndex)
_currentMapStateRepository.NPCs.Remove(npc);
_currentMapStateRepository.NPCs.Add(newNpc);
}

public void NPCDropItem(MapItem item)
{
}
}

[AutoMappedType]
Expand Down Expand Up @@ -159,6 +163,7 @@ public void NotifySelfSpellCast(short playerId, short spellId, int spellHp, byte
}

public void NotifyStartSpellCast(short playerId, short spellId) { }
public void NotifyTargetNpcSpellCast(short playerId) { }
public void NotifyTargetOtherSpellCast(short sourcePlayerID, short targetPlayerID, short spellId, int recoveredHP, byte targetPercentHealth) { }
public void StartOtherCharacterAttackAnimation(int characterID, int noteIndex) { }
public void StartOtherCharacterWalkAnimation(int characterID, byte destinationX, byte destinationY, EODirection direction) { }
Expand Down

0 comments on commit 24b2be0

Please sign in to comment.