mirror of
https://github.com/usatiuk/cardboy.git
synced 2025-10-29 07:37:48 +01:00
22 lines
279 B
C++
22 lines
279 B
C++
//
|
|
// Created by Stepan Usatiuk on 03.03.2025.
|
|
//
|
|
|
|
#ifndef POWER_HELPER_HPP
|
|
#define POWER_HELPER_HPP
|
|
|
|
|
|
class PowerHelper {
|
|
public:
|
|
static PowerHelper& get();
|
|
|
|
bool is_slow();
|
|
void set_slow(bool slow);
|
|
|
|
private:
|
|
bool _slow = false;
|
|
};
|
|
|
|
|
|
#endif // POWER_HELPER_HPP
|