2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-06-26 14:21:49 +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.";
}