/* * Copyright (c) 2002, Stefan Farfeleder * $Id: explosion.h,v 1.1.1.1 2002/08/18 17:28:50 aeneas Exp $ */ #ifndef JFK_EXPLOSION_H #define JFK_EXPLOSION_H #include #include "object.h" namespace JFK { class explosion : public virtual object { public: explosion(); std::string tostring() const; void fromstring(const std::string& s); std::string classname() const; }; } #endif