Files
axyz/include/Engine/Sound/ESetSFXGain.h
T
2016-01-14 13:54:38 +01:00

16 lines
211 B
C++

#ifndef Events_SetSFXGain_h__
#define Events_SetSFXGain_h__
#include "Core/Event.h"
namespace Events
{
// Set the "volume" for all effect sounds
struct SetSFXGain : public Event
{
float Gain;
};
}
#endif