Loading...
Searching...
No Matches
Typer.h
Go to the documentation of this file.
1#ifndef TYPER_H
2#define TYPER_H
3
4#pragma once
5
8
9namespace ml
10{
34 class Typer : public virtual Graphic<sf::Text>
35 {
36 void registerEvents();
37
38 public:
39 using Graphic::Graphic;
40
51 };
52
53} // namespace ml
54
55#endif // TYPER_H
static const sf::Font & getDefault()
Return the built-in Arial font.
Typer(const sf::Font &font=FontManager<>::getDefault())
Construct a Typer with a given font.
Definition Component.h:18