- Note
- This Source File belongs to Minesweeper Game Example. Please follow the link for example explanation.
#pragma once
#include "MinesweeperWindow.h"
#include "AUI/Platform/AWindow.h"
#include "AUI/View/ANumberPicker.h"
#include "AUI/View/ALabel.h"
class NewGameWindow :
public AWindow {
public:
NewGameWindow(MinesweeperWindow* minesweeper);
private:
MinesweeperWindow* mMinesweeper;
void updateMinesMax();
void updateDifficultyLabel();
void begin();
};
Represents a window in the underlying windowing system.
Definition AWindow.h:45
An std::weak_ptr with AUI extensions.
Definition SharedPtrTypes.h:179