1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/vendor/CPR/include/cpr/low_speed.h

19 lines
294 B
C
Raw Normal View History

2021-03-26 23:18:51 +01:00
#ifndef CPR_LOW_SPEED_H
#define CPR_LOW_SPEED_H
#include <cstdint>
namespace cpr {
class LowSpeed {
public:
2021-07-02 16:44:48 +02:00
LowSpeed(const std::int32_t p_limit, const std::int32_t p_time) : limit(p_limit), time(p_time) {}
2021-03-26 23:18:51 +01:00
std::int32_t limit;
std::int32_t time;
};
} // namespace cpr
#endif