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
|