2
0
mirror of synced 2025-01-30 02:06:12 +00:00

21 lines
553 B
C#
Raw Normal View History

2024-08-01 08:29:12 +02:00
namespace CodexPlugin.OverwatchSupport.LineConverters
{
public class DialSuccessfulLineConverter : ILineConverter
{
public string Interest => "Dial successful";
public void Process(CodexLogLine line, Action<Action<OverwatchCodexEvent>> addEvent)
{
var peerId = line.Attributes["peerId"];
addEvent(e =>
{
e.DialSuccessful = new PeerDialSuccessfulEvent
2024-08-01 08:29:12 +02:00
{
TargetPeerId = peerId
};
});
}
}
}