cpp/motions/random.h
Dominik Demuth 17f95627a9 first commit
2024-08-16 19:55:27 +02:00

20 lines
354 B
C++

//
// Created by dominik on 8/12/24.
//
#ifndef RWSIM_MOTIONRANDOMJUMP_H
#define RWSIM_MOTIONRANDOMJUMP_H
#include "base.h"
#include <random>
class RandomJump final : public Motion {
public:
RandomJump(double, double, std::mt19937_64&);
explicit RandomJump(std::mt19937_64&);
double jump() override;
};
#endif //RWSIM_MOTIONRANDOMJUMP_H