#pragma once #include #include #include // Modified from Dear ImGui std::vector DecodeBase85(const char *src); // May not be needed now, but could be useful in the future. static inline std::vector DecodeBase85(const std::string src) { return DecodeBase85(src.c_str()); }