mirror of
https://github.com/QuasarApp/Snake.git
synced 2025-04-26 09:44:40 +00:00
17 lines
233 B
C++
17 lines
233 B
C++
#ifndef BACKGROUND_H
|
|
#define BACKGROUND_H
|
|
|
|
#include "itemworld.h"
|
|
|
|
|
|
class BackGround : public ItemWorld
|
|
{
|
|
public:
|
|
BackGround(double x, double y);
|
|
|
|
void render() override;
|
|
void reset() override;
|
|
};
|
|
|
|
#endif // BACKGROUND_H
|