19 lines
206 B
C++
Executable File
19 lines
206 B
C++
Executable File
#ifndef CWATERVOLUME_H
|
|
#define CWATERVOLUME_H
|
|
#include "Core/Component.h"
|
|
|
|
namespace dd
|
|
{
|
|
namespace Components
|
|
{
|
|
|
|
struct WaterVolume : public Component
|
|
{
|
|
float Radius;
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif |