Read IW4 signed headers

This commit is contained in:
Jan
2020-09-06 14:39:19 +02:00
parent 3a69b3b0b0
commit 060e5678b5
40 changed files with 1767 additions and 24 deletions

View File

@ -0,0 +1,11 @@
#include "InvalidHashException.h"
std::string InvalidHashException::DetailedMessage()
{
return "Loaded fastfile has an invalid hash.";
}
char const* InvalidHashException::what() const
{
return "Loaded fastfile has an invalid hash.";
}