Files
squidout/include/Physics/CPhysics.h
T
2015-09-25 00:01:24 +02:00

22 lines
313 B
C++

#ifndef DAYDREAM_CPHYSICS_H
#define DAYDREAM_CPHYSICS_H
#include "Core/Component.h"
namespace dd
{
namespace Components
{
struct Physics: public Component
{
//idk if anything should be here :)
bool Static = true;
float GravityScale = 0.f;
};
}
}
#endif //DAYDREAM_CPHYSICS_H