16 lines
215 B
C++
16 lines
215 B
C++
#ifndef Events_SetBGMGain_h__
|
|
#define Events_SetBGMGain_h__
|
|
|
|
#include "Core/Event.h"
|
|
|
|
namespace Events
|
|
{
|
|
// Set the "volume" for all background sounds
|
|
struct SetBGMGain : public Event
|
|
{
|
|
float Gain;
|
|
};
|
|
|
|
}
|
|
|
|
#endif |