Snake/back-end/box.h

14 lines
156 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:
Box(double *speed, double x, double y);
2018-09-27 00:10:42 +03:00
};
#endif // BOX_H