This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
testexetrisathlon/testexetrisathlon/SoundManagement/ISoundManager.cs

12 lines
319 B
C#

using System;
using System.Collections.Generic;
namespace testexetrisathlon.SoundManagement
{
public interface ISoundManager : IDisposable
{
public void Init(Dictionary<string, string> manifestResources);
public void SetCurrent(string id);
public void SetVolume(int percent);
}
}