mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Add option to get watched players and their current equip from IPlayerWatcher.
This commit is contained in:
parent
adb1aaeb93
commit
65778bb1b4
3 changed files with 26 additions and 13 deletions
|
|
@ -1,4 +1,5 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using Dalamud.Game.ClientState.Actors.Types;
|
||||
using Penumbra.GameData.Structs;
|
||||
|
||||
|
|
@ -21,8 +22,10 @@ namespace Penumbra.PlayerWatch
|
|||
public void Disable();
|
||||
public void SetStatus( bool enabled );
|
||||
|
||||
public void AddPlayerToWatch( string name );
|
||||
public void RemovePlayerFromWatch( string playerName );
|
||||
public void AddPlayerToWatch( string playerName );
|
||||
public void RemovePlayerFromWatch( string playerName );
|
||||
public ActorEquipment UpdateActorWithoutEvent( Actor actor );
|
||||
|
||||
public IEnumerable< (string, ActorEquipment) > WatchedPlayers();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue