2021-09-13 15:53:43 +03:00
|
|
|
//
|
|
|
|
// Created by Иван Ильин on 29.01.2021.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ENGINE_AWAIT_H
|
|
|
|
#define ENGINE_AWAIT_H
|
|
|
|
|
|
|
|
#include "Animation.h"
|
|
|
|
|
2021-10-12 20:18:56 +03:00
|
|
|
class AWait final : public Animation {
|
2021-10-28 16:58:02 +03:00
|
|
|
private:
|
2021-10-31 11:39:08 +03:00
|
|
|
void update() override {}
|
|
|
|
|
2021-09-13 15:53:43 +03:00
|
|
|
public:
|
2021-10-28 16:58:02 +03:00
|
|
|
explicit AWait(double duration = 1) : Animation(duration, LoopOut::None, InterpolationType::Linear, true) {
|
2021-09-13 15:53:43 +03:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //INC_3DZAVR_AWAIT_H
|