11 lines
158 B
C
11 lines
158 B
C
|
#pragma once
|
||
|
|
||
|
#include "GameObject.h"
|
||
|
|
||
|
class Crater : public GameObject {
|
||
|
public:
|
||
|
bool isInside(double xn) const;
|
||
|
|
||
|
virtual void Draw() const override;
|
||
|
};
|