- Note
- This Source File belongs to Minesweeper Game Example. Please follow the link for example explanation.
#pragma once
#include "FieldCell.h"
#include "AUI/View/AView.h"
class CellView :
public AView {
public:
CellView(FieldCell& cell);
[[nodiscard]]
FieldCell fieldCell() const { return mCell; }
private:
FieldCell& mCell;
FieldCell mCellValueCopy;
};
Base class of all UI objects.
Definition AView.h:78
virtual void render(ARenderContext ctx)
Draws this AView. Noone should call this function except rendering routine.
Render context passed to AView::render.
Definition ARenderContext.h:43