Simple Nano Circuit
0.0.2
TextManagerClass.h
1
#ifndef _TextManagerClass_H_
2
#define _TextManagerClass_H_
3
4
#include <string>
5
#include <SDL.h>
6
7
class
TextManagerClass
8
{
9
private
:
10
SDL_Renderer* renderer =
nullptr
;
11
12
public
:
13
TextManagerClass
(SDL_Renderer*);
14
~TextManagerClass
();
15
16
void
printText(
int
,
int
, std::string&);
17
void
printText(
const
SDL_Point&, std::string&);
18
int
textLength(std::string&);
19
};
20
21
#endif
TextManagerClass
Definition:
TextManagerClass.h:8
sncircuit
src
TextManagerClass.h
Generated by
1.9.4