#include "TuiScreenProperty.h"
#include "TuiLayout.h"

#if defined(W1536)
#include "TuiLayout_w1536.h"
#endif

void initScreenProperty() {
	initLayout();
}

uint32_t getScreenWidth() {
	if (getScreenType() == SCREEN_TYPE_WINNER_MAIN && getTuiMode() == COLDWALLET_TUI_MODE)
		return SCREEN_HEIGHT;
	return SCREEN_WIDTH;
}

uint32_t getScreenHeight() {
	if (getScreenType() == SCREEN_TYPE_WINNER_MAIN && getTuiMode() == COLDWALLET_TUI_MODE)
		return SCREEN_WIDTH;
	return SCREEN_HEIGHT;
}