dotfiles/.config/Code/User/History/-78f4582a/AZPv.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

17 lines
No EOL
268 B
C++

#include "Food.h"
#include "util.h"
class YellowFood : public Food{
const int dimension = 20;
public:
PinkFood(int x, int y) : Food(x, y, colors[PINK]){}
void draw() override{
DrawSquare(x, y, dimension, color);
}
~PinkFood(){}
};