vectozavr-shooter/engine/animation/AWait.h

20 lines
364 B
C
Raw Normal View History

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"
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