mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
19 lines
286 B
C
19 lines
286 B
C
|
#ifndef CPR_LOW_SPEED_H
|
||
|
#define CPR_LOW_SPEED_H
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace cpr {
|
||
|
|
||
|
class LowSpeed {
|
||
|
public:
|
||
|
LowSpeed(const std::int32_t limit, const std::int32_t time) : limit(limit), time(time) {}
|
||
|
|
||
|
std::int32_t limit;
|
||
|
std::int32_t time;
|
||
|
};
|
||
|
|
||
|
} // namespace cpr
|
||
|
|
||
|
#endif
|