1 #ifndef BLOBS_UI_CREATUREPANEL_HPP_
2 #define BLOBS_UI_CREATUREPANEL_HPP_
25 explicit CreaturePanel(const app::Assets &);
28 CreaturePanel(const CreaturePanel &) = delete;
29 CreaturePanel &operator =(const CreaturePanel &) = delete;
31 CreaturePanel(CreaturePanel &&) = delete;
32 CreaturePanel &operator =(CreaturePanel &&) = delete;
35 void Show(creature::Creature &);
38 void Draw(app::Assets &, graphics::Viewport &) noexcept;
44 const app::Assets &assets;
45 creature::Creature *c;
52 std::vector<Meter *> need_meters;