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

14 lines
No EOL
185 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;
bool fall();
~Food();
};