Files
squidout/include/Sound/EMasterVolume.h
T
Stiffly e867722d9a Added logic for mastervolume. And a coresponding event.
(sources need to be updated for it to be fully working)
2015-09-24 22:55:24 +02:00

28 lines
366 B
C++

//
// Created by Adam on 2015-09-24.
//
#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