17 lines
263 B
C
17 lines
263 B
C
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
#include "GameObject.h"
|
||
|
|
||
|
class DestroyableGroundObject : public GameObject
|
||
|
{
|
||
|
public:
|
||
|
|
||
|
virtual bool isInside(double x1, double x2) const = 0;
|
||
|
|
||
|
virtual inline uint16_t GetScore() const = 0;
|
||
|
|
||
|
protected:
|
||
|
|
||
|
};
|