basically finish dialog helper

This commit is contained in:
2024-04-29 15:48:10 +08:00
parent c9152bffa8
commit 7258c4c92b
7 changed files with 245 additions and 64 deletions

View File

@ -9,3 +9,15 @@
#else
#define YYCC_OS YYCC_OS_LINUX
#endif
// Decide the char type we used
#include <string>
namespace YYCC {
#if defined(__cpp_char8_t)
using u8char = char8_t;
using u8string = std::u8string
#else
using u8char = char;
using u8string = std::string;
#endif
}