#ifndef JFK_BULLET_H #define JFK_BULLET_H #include #include "object.h" namespace JFK { class bullet : public virtual object { public: bullet(int itype); std::string tostring() const; void fromstring(const std::string& s); std::string classname() const; int type; /* Type */ }; } #endif