Files
fishtanks/src/Components/Physics.h
T
2014-04-13 02:20:50 +02:00

20 lines
223 B
C++

#ifndef Components_Physics_h__
#define Components_Physics_h__
#include "Component.h"
namespace Components
{
struct Physics : Component
{
Physics()
: Mass(0.f) { }
float Mass;
};
}
#endif // Components_Physics_h__