Create TLuaChunk constructor to satisfy MSVC

This commit is contained in:
Lion Kortlepel
2021-09-19 12:12:38 +02:00
parent 701e613990
commit 60b86e2be6
3 changed files with 10 additions and 1 deletions

View File

@@ -45,6 +45,9 @@ struct TLuaPluginConfig {
};
struct TLuaChunk {
TLuaChunk(std::shared_ptr<std::string> Content,
std::string FileName,
std::string PluginPath);
std::shared_ptr<std::string> Content;
std::string FileName;
std::string PluginPath;