Peoplemon  0.1.0
Peoplemon 3 game source documentation
Credits.cpp
Go to the documentation of this file.
2 
3 namespace editor
4 {
5 namespace page
6 {
8 : Page(s) {
9  content = bl::gui::Box::create(bl::gui::LinePacker::create(bl::gui::LinePacker::Vertical));
10  content->pack(bl::gui::Label::create("Credits editor will go here"));
11 }
12 
13 void Credits::update(float) {
14  // TODO
15 }
16 
17 } // namespace page
18 } // namespace editor
All classes and functionality used for implementing the game editor.
Definition: Tile.hpp:11
Owns all primary systems and a reference to the engine.
Definition: Systems.hpp:47
virtual void update(float dt) override
Does nothing.
Definition: Credits.cpp:13
Credits(core::system::Systems &systems)
Construct a new Credits page.
Definition: Credits.cpp:7
Base class for all editor pages.
Definition: Page.hpp:32
bl::gui::Box::Ptr content
Definition: Page.hpp:69