mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
12 lines
212 B
C++
12 lines
212 B
C++
#pragma once
|
|
|
|
namespace RBX
|
|
{
|
|
class IProgressIndicator
|
|
{
|
|
public:
|
|
// returns true if cancel requested.
|
|
virtual bool setProgess(float percent) { return step(); }; // optional
|
|
virtual bool step() = 0;
|
|
};
|
|
} |