Reformat + fix pending selection.

This commit is contained in:
ArthurSonzogni
2024-08-31 15:39:42 +02:00
parent eef0c3d677
commit b352e13253
4 changed files with 79 additions and 51 deletions

View File

@@ -52,6 +52,12 @@ class Node {
};
virtual void Check(Status* status);
// Selection.
// Propagated from Parents to Children.
virtual void Select(Box selected_area) {
// TODO: Implement this.
}
protected:
Elements children_;
Requirement requirement_;