mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 17:54:33 -05:00
18 lines
433 B
C++
Executable File
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()
|
|
{
|
|
|
|
} |