Files
GabsPuNs-Project_Zenith_Main/Minecraft.Client/Common/UI/UIScene_Timer.cpp
GabsPuNs bc6c09146a New File System and Cleanup some code Part 3
* Remove stdafx.h and some <unordered_set> includes
* Update Minecraft Server Defines and remove more unused folders/files
* Unbloat stdafx.h from Minecraft.World
2026-05-24 22:21:41 -04:00

31 lines
612 B
C++

#include "UI.h"
#include "UIScene_Timer.h"
UIScene_Timer::UIScene_Timer(int iPad, void *initData, UILayer *parentLayer) : UIScene(iPad, parentLayer)
{
// Setup all the Iggy references we need for this scene
initialiseMovie();
// In normal usage, we want to hide the new background that's used during texture pack reloading
if(initData == 0)
{
m_controlBackground.setVisible(false);
}
}
wstring UIScene_Timer::getMoviePath()
{
return L"Timer";
}
void UIScene_Timer::reloadMovie(bool force)
{
// Never needs reloaded
}
bool UIScene_Timer::needsReloaded()
{
// Never needs reloaded
return false;
}