diff options
Diffstat (limited to 'src/editor.hpp')
| -rw-r--r-- | src/editor.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/editor.hpp b/src/editor.hpp index aac6615..186cb5e 100644 --- a/src/editor.hpp +++ b/src/editor.hpp @@ -49,6 +49,7 @@ namespace silly::editor { void createNewLevel(const sf::RenderWindow &window); void createNewFloor(const sf::RenderWindow &window); void createSavePackageWindow(const sf::RenderWindow &window); + void showAboutWindow(const sf::RenderWindow &window); void drawHeaderBar(sf::RenderWindow &window); LevelPackage &package; @@ -59,6 +60,8 @@ namespace silly::editor { float zoom = 1.0f; bool isDragging = false; + bool aboutState = false; + std::optional<std::shared_ptr<TilesetTile>> selectedTile; std::optional<NewTileState> newTileState; std::optional<NewLevelState> newLevelState; |
