dotfiles/.config/Code/User/History/-89d9d7e/rbo6.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

7 lines
No EOL
135 B
C++

#include "Food.h"
Food::Food(int x, int y, float *color) : x(x), y(y), color(color){}
void Food::fall(){
y -= 5;
}
Food::~Food(){}