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

Add AuthedBlocks processor for IW4 fastfiles

This commit is contained in:
Jan
2020-09-06 18:18:30 +02:00
parent 060e5678b5
commit d7096c9137
8 changed files with 244 additions and 58 deletions

View File

@ -0,0 +1,11 @@
#include "TooManyAuthedGroupsException.h"
std::string TooManyAuthedGroupsException::DetailedMessage()
{
return "Loaded fastfile has too many authed groups.";
}
char const* TooManyAuthedGroupsException::what() const
{
return "Loaded fastfile has too many authed groups.";
}

View File

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