Clean project structure.
This commit is contained in:
parent
78a4fa99ff
commit
947bf937fd
496 changed files with 206 additions and 137 deletions
21
src/rendering/graphics/RasterPainter.h
Normal file
21
src/rendering/graphics/RasterPainter.h
Normal file
|
@ -0,0 +1,21 @@
|
|||
#pragma once
|
||||
|
||||
#include "AbstractPainter.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
class DrawingContext;
|
||||
|
||||
template<typename T>
|
||||
class Grid;
|
||||
|
||||
class RasterPainter : public AbstractPainter
|
||||
{
|
||||
public:
|
||||
RasterPainter(DrawingContext* context);
|
||||
|
||||
void paint() override;
|
||||
|
||||
private:
|
||||
std::unique_ptr<Grid<unsigned char> > mGrid;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue