Files

20 lines
251 B
C++

#ifndef COMPONENTS_CCOLLISIONSOUND_H__
#define COMPONENTS_CCOLLISIONSOUND_H__
#include "Core/Component.h"
namespace dd
{
namespace Components
{
struct CollisionSound : public Component
{
std::string FilePath;
};
}
}
#endif