BCSTM-Player |

This commit is contained in:
2021-07-23 13:58:16 +00:00
parent f51ddecf3d
commit c537fc095a
101 changed files with 39980 additions and 0 deletions

11
internal/lang.hpp Normal file
View File

@ -0,0 +1,11 @@
#pragma once
#include <string>
#include "json.hpp"
namespace RenderD7::Lang
{
std::string getSys();
std::string get(const std::string &key);
void load(const std::string &lang);
}