17 lines
162 B
C++
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__
|