JKSV/src/appStates/progressState.cpp
2024-06-04 13:36:04 -04:00

18 lines
433 B
C++
Executable File

#include "appStates/progressState.hpp"
progressState::progressState(sys::taskFunction threadFunction, std::shared_ptr<sys::progressArgs> args, const uint64_t &maxValue)
{
m_Task = std::make_unique<sys::task>(threadFunction, args);
m_ProgressBar = std::make_unique<ui::progressBar>(maxValue);
}
progressState::~progressState() { }
void progressState::update(void)
{
}
void progressState::render()
{
}