dotfiles/.config/Code/User/History/15918d07/eCCc.h

13 lines
134 B
C
Raw Normal View History

2024-06-16 18:53:25 +05:00
class Food{
int x;
int y;
float *color;
public:
Food(int x, int y, float *color) : x(x), y(y), color(color){}
};