dotfiles/.config/Code/User/History/15918d07/bn2q.h
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

18 lines
No EOL
246 B
C++

#pragma once
class Food{
protected:
int x;
int y;
float *color;
public:
Food(int x, int y, float *color);
virtual void draw() = 0;
void fall();
void activatePowerup();
int getX();
int getY();
~Food();
};