mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-03 16:57:16 -05:00
13 lines
227 B
C#
13 lines
227 B
C#
using System;
|
|
using System.IO;
|
|
|
|
namespace OpenDiablo2.Common.Interfaces
|
|
{
|
|
public interface IMusicProvider : IDisposable
|
|
{
|
|
void LoadSong(Stream data);
|
|
void PlaySong();
|
|
void StopSong();
|
|
}
|
|
}
|