mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-19 17:05:44 +01:00
38 lines
728 B
C++
38 lines
728 B
C++
#include "AuthCodes.h"
|
|
|
|
namespace AuthHelper
|
|
{
|
|
|
|
bool IsPreBCAcceptedClientBuild(int build)
|
|
{
|
|
int accepted_versions[] = PRE_BC_ACCEPTED_CLIENT_BUILD;
|
|
for (int i = 0; accepted_versions[i]; ++i)
|
|
{
|
|
if (build == accepted_versions[i])
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool IsPostBCAcceptedClientBuild(int build)
|
|
{
|
|
int accepted_versions[] = POST_BC_ACCEPTED_CLIENT_BUILD;
|
|
for (int i = 0; accepted_versions[i]; ++i)
|
|
{
|
|
if (build == accepted_versions[i])
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool IsAcceptedClientBuild(int build)
|
|
{
|
|
return (IsPostBCAcceptedClientBuild(build) || IsPreBCAcceptedClientBuild(build));
|
|
}
|
|
|
|
};
|