This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #pragma once | |
| #define STB_TRUETYPE_IMPLEMENTATION | |
| #include "stb_truetype.h" | |
| #include <fstream> | |
| class Font { | |
| public: | |
| void stbtt_initfont(void) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <chrono> | |
| #include <sstream> | |
| #include <iomanip> | |
| #include <format> | |
| using namespace std; | |
| using namespace std::chrono; | |
| system_clock::time_point strToTp(string dateString) |