gBar/src/AudioFlyin.h

14 lines
209 B
C
Raw Normal View History

2023-01-13 15:13:56 +00:00
#pragma once
#include "Widget.h"
#include "Window.h"
namespace AudioFlyin
{
enum class Type
{
Speaker,
Microphone
};
void Create(Window& window, int32_t monitor, Type type);
2023-01-13 15:13:56 +00:00
}