std::vector<std::string> LoadedModule_Hashes;
__forceinline bool LoadGmodLibraryFromRawData(lua_State* L, const std::string& data)
{
auto hash = MD5(data).hexdigest();
if (std::find(
LoadedModule_Hashes.begin(),
LoadedModule_Hashes.end(),
hash) != LoadedModule_Hashes.end())
return false;
LoadedModule_Hashes.push_back(hash);
return true;
}