kopia lustrzana https://github.com/jameshball/osci-render
14 wiersze
303 B
C
14 wiersze
303 B
C
|
#pragma once
|
||
|
#include "../shape/Vector2.h"
|
||
|
#include <JuceHeader.h>
|
||
|
#include "../shape/Shape.h"
|
||
|
|
||
|
class TextParser {
|
||
|
public:
|
||
|
TextParser(juce::String text, juce::Font font);
|
||
|
~TextParser();
|
||
|
|
||
|
std::vector<std::unique_ptr<Shape>> draw();
|
||
|
private:
|
||
|
std::vector<std::unique_ptr<Shape>> shapes;
|
||
|
};
|