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

14 lines
141 B
C
Raw Normal View History

2018-09-27 00:10:42 +03:00
#ifndef BOX_H
#define BOX_H
#include "itemworld.h"
2018-09-27 14:59:10 +03:00
class Box: public ItemWorld
2018-09-27 00:10:42 +03:00
{
public:
2018-10-11 00:04:52 +03:00
Box(double x, double y);
2018-09-27 00:10:42 +03:00
};
#endif // BOX_H