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
8{
9 private:
10 SDL_Renderer* renderer = nullptr;
11
12 public:
13 TextManagerClass(SDL_Renderer*);
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
Definition: TextManagerClass.h:8