mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 01:34:40 +00:00
14 lines
141 B
C++
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
|