16 lines
213 B
C
16 lines
213 B
C
|
#pragma once
|
||
|
|
||
|
#include "DynamicObject.h"
|
||
|
|
||
|
class Plane : public DynamicObject {
|
||
|
public:
|
||
|
|
||
|
void Draw() const override;
|
||
|
|
||
|
inline void ChangePlaneY(double dy) { yDirection += dy; }
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|