Loading...
Searching...
No Matches
Typer.h
Go to the documentation of this file.
1// Copyright (c) 2025 Dave R. Smith. All rights reserved.
2// Malena Framework — Proprietary Software. See LICENSE for terms.
3
4#ifndef MALENA_TYPER_H
5#define MALENA_TYPER_H
6
7#pragma once
8
12
13namespace ml
14{
38 class MALENA_API Typer : public virtual Graphic<sf::Text>
39 {
40 void registerEvents();
41
42 public:
43 using Graphic::Graphic;
44
55 };
56
57} // namespace ml
58
59#endif // MALENA_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.
#define MALENA_API
Definition Component.h:22