OpenLoco/src/openloco/ProgressBar.h

12 lines
208 B
C++

#pragma once
#include "localisation/stringmgr.h"
#include <cstdint>
namespace openloco::progressbar
{
void begin(string_id stringId, int32_t edx);
void setProgress(int32_t value);
void end();
}