kopia lustrzana https://github.com/jameshball/osci-render
10 wiersze
191 B
C
10 wiersze
191 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <memory>
|
||
|
#include "../shape/Shape.h"
|
||
|
|
||
|
class FrameConsumer {
|
||
|
public:
|
||
|
virtual void addFrame(std::vector<std::unique_ptr<Shape>> frame) = 0;
|
||
|
};
|