123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- // 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_GROWUP_HPP
- #define HEADER_SUPERTUX_OBJECT_GROWUP_HPP
- #include "object/moving_sprite.hpp"
- #include "supertux/direction.hpp"
- #include "supertux/physic.hpp"
- class GrowUp final : public MovingSprite
- {
- public:
- GrowUp(const Vector& pos, Direction direction = Direction::RIGHT, const std::string& custom_sprite = "");
- virtual bool is_saveable() const override { return false; }
- virtual void update(float dt_sec) override;
- virtual void draw(DrawingContext& context) override;
- virtual void collision_solid(const CollisionHit& hit) override;
- virtual HitResponse collision(GameObject& other, const CollisionHit& hit) override;
- void do_jump();
- private:
- Physic physic;
- const bool m_custom_sprite;
- SpritePtr shadesprite;
- SpritePtr lightsprite;
- private:
- GrowUp(const GrowUp&) = delete;
- GrowUp& operator=(const GrowUp&) = delete;
- };
- #endif
- /* EOF */
|