Files
axyz/include/Engine/Sound/EStopSound.h
T

17 lines
199 B
C++

#ifndef Events_StopSound_h__
#define Events_StopSound_h__
#include "Core/EventBroker.h"
#include "Core/Entity.h"
namespace Events
{
struct StopSound : Event
{
EntityID EmitterID;
};
}
#endif