2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-07-03 09:41:50 +00:00

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.";
}

View File

@ -0,0 +1,9 @@
#pragma once
#include "LoadingException.h"
class InvalidHashException final : public LoadingException
{
public:
std::string DetailedMessage() override;
char const* what() const override;
};