22 lines
317 B
C++
22 lines
317 B
C++
#ifndef EVENTS_EMASTERVOLUME_H__
|
|
#define EVENTS_EMASTERVOLUME_H__
|
|
|
|
#include "Core/EventBroker.h"
|
|
|
|
namespace dd
|
|
{
|
|
namespace Events
|
|
{
|
|
|
|
struct MasterVolume : public Event
|
|
{
|
|
float Gain = 1;
|
|
//To determine what channel group to apply the change to.
|
|
bool IsAmbient = false;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|