Audio module, simple text rendering

This commit is contained in:
MihailRis
2022-03-20 23:48:21 +03:00
committed by GitHub
parent e96fd909ea
commit 1770acbfef
15 changed files with 702 additions and 17 deletions
+18
View File
@@ -0,0 +1,18 @@
#ifndef GRAPHICS_FONT_H_
#define GRAPHICS_FONT_H_
#include <string>
class Texture;
class Batch2D;
class Font {
public:
Texture* texture;
Font(Texture* texture);
~Font();
void draw(Batch2D* batch, std::string text, int x, int y);
};
#endif /* GRAPHICS_FONT_H_ */