22 lines
406 B
C++
22 lines
406 B
C++
#include "MainAppMenu.h"
|
|
|
|
#include "AppMenu.h"
|
|
|
|
#include <stack>
|
|
#include <memory>
|
|
#include <SFML/Graphics.hpp>
|
|
|
|
|
|
MainAppMenu::MainAppMenu(std::shared_ptr<std::stack<AppMenu>> menuStack, std::shared_ptr<Settings> settings, std::shared_ptr<sf::RenderWindow> renderWindow) :
|
|
AppMenu(menuStack, settings, renderWindow) {
|
|
|
|
}
|
|
|
|
void MainAppMenu::computeFrame() {
|
|
|
|
}
|
|
|
|
void MainAppMenu::drawFrame() const {
|
|
|
|
}
|