Skip to content
Snippets Groups Projects
Commit a1d847d8 authored by Susa Márk's avatar Susa Márk
Browse files

Upload New File

parent fffbdd00
Branches
No related tags found
No related merge requests found
#ifndef AMOEBAWIDGET_HPP
#define AMOEBAWIDGET_HPP
#include "gamelogic.hpp"
#include "graphics.hpp"
class AmoebaWidget {
public:
AmoebaWidget(int cellSize, int cellPadding);
void draw(const GameLogic& game, int pos_x, int pos_y, int width, int height) const;
private:
int cellSize;
int cellPadding;
void clearArea(int pos_x, int pos_y, int width, int height) const;
};
#endif // AMOEBAWIDGET_HPP
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment