#include "TuiPopupScreenController.h"

Node gPopupScreenControlNode[MAX_CONTROL];

void deleteAllPopupControl() {
	for (uint32_t i = 0; i < MAX_CONTROL; ++i) {
		clearNode(&gPopupScreenControlNode[i]);
	}
}

Node* getPopupScreenControlNode() {
	deleteAllPopupControl();
	return gPopupScreenControlNode;
}
