Files
fishtanks/src/Components/Shot.h
T
2014-05-13 01:50:58 +02:00

17 lines
162 B
C++

#ifndef Shot_h__
#define Shot_h__
#include "Component.h"
namespace Components
{
struct Shot : Component
{
Shot();
float Speed;
};
}
#endif // Shot_h__