4
1
mirror of https://github.com/QuasarApp/Snake.git synced 2025-05-05 22:19:45 +00:00

14 lines
141 B
C++

#ifndef BOX_H
#define BOX_H
#include "itemworld.h"
class Box: public ItemWorld
{
public:
Box(double x, double y);
};
#endif // BOX_H