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

@@ -497,3 +497,9 @@ void TLuaResult::WaitUntilReady() {
std::this_thread::sleep_for(std::chrono::milliseconds(10));
}
}
TLuaChunk::TLuaChunk(std::shared_ptr<std::string> Content, std::string FileName, std::string PluginPath)
: Content(Content)
, FileName(FileName)
, PluginPath(PluginPath) {
}