Added logic for tags and audio engine.
This commit is contained in:
7
Harmonia.Core/Engine/PlaybackStateChangedEventArgs.cs
Normal file
7
Harmonia.Core/Engine/PlaybackStateChangedEventArgs.cs
Normal file
@@ -0,0 +1,7 @@
|
||||
namespace Harmonia.Core.Engine;
|
||||
|
||||
public class PlaybackStateChangedEventArgs(AudioPlaybackState oldState, AudioPlaybackState newState) : EventArgs
|
||||
{
|
||||
public AudioPlaybackState OldState { get; } = oldState;
|
||||
public AudioPlaybackState State { get; } = newState;
|
||||
}
|
||||
Reference in New Issue
Block a user