geekbrains_gof/SBomber/include/Plane.h

16 lines
213 B
C
Raw Permalink Normal View History

2021-12-20 22:22:05 +00:00
#pragma once
#include "DynamicObject.h"
class Plane : public DynamicObject {
public:
void Draw() const override;
inline void ChangePlaneY(double dy) { yDirection += dy; }
private:
};