1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // SuperTux
- // Copyright (C) 2006 Matthias Braun <matze@braunis.de>
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // This program is distributed in the hope that it will be useful,
- // but WITHOUT ANY WARRANTY; without even the implied warranty of
- // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- // GNU General Public License for more details.
- //
- // You should have received a copy of the GNU General Public License
- // along with this program. If not, see <http://www.gnu.org/licenses/>.
- #ifndef HEADER_SUPERTUX_OBJECT_FIREWORKS_HPP
- #define HEADER_SUPERTUX_OBJECT_FIREWORKS_HPP
- #include "supertux/game_object.hpp"
- #include "supertux/timer.hpp"
- class DrawingContext;
- class Fireworks final : public GameObject
- {
- public:
- Fireworks();
- virtual GameObjectClasses get_class_types() const override { return GameObject::get_class_types().add(typeid(Fireworks)); }
- virtual void update(float dt_sec) override;
- virtual void draw(DrawingContext& context) override;
- virtual bool is_saveable() const override {
- return false;
- }
- private:
- Timer timer;
- };
- #endif
- /* EOF */
|