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