26 lines
300 B
C++
26 lines
300 B
C++
//
|
|
// Created by Adam on 2015-09-17.
|
|
//
|
|
|
|
#ifndef COMPONENTS_CCOLLISIONSOUND_H__
|
|
#define COMPONENTS_CCOLLISIONSOUND_H__
|
|
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
|
|
namespace Components
|
|
{
|
|
|
|
struct CollisionSound : public Component
|
|
{
|
|
std::string filePath;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|