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

13 lines
No EOL
146 B
C++

#pragma once
class Food{
protected:
int x;
int y;
const float *color;
public:
Food(int x, int y, float *color);
~Food();
};