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

17 lines
249 B
C++

#ifndef Events_StopSound_h__
#define Events_StopSound_h__
#include "Core/EventBroker.h"
#include "Core/Entity.h"
namespace Events
{
// Stops a sound emitter, and will also delete it.
struct StopSound : Event
{
EntityID EmitterID;
};
}
#endif