13 lines
175 B
C++
13 lines
175 B
C++
![]() |
#include "Food.h"
|
||
|
|
||
|
class GreenFood : public Food{
|
||
|
|
||
|
int height;
|
||
|
|
||
|
public:
|
||
|
|
||
|
GreenFood(int x, int y, int height, float *color) : height(height), Food(x, y, color){}
|
||
|
|
||
|
|
||
|
|
||
|
};
|