for some reason it has to be added here, otherwise torch cant find the function

This commit is contained in:
jenz 2024-06-10 21:35:00 +02:00
parent 9b0c48f9e5
commit 2125d133e9

View File

@ -47,3 +47,11 @@ public int API_GetMaxClients()
{ {
return MaxClients; return MaxClients;
} }
public int API_GetUserFlagBits(int client)
{
if (!IsClientConnected(client))
return 0;
return GetUserFlagBits(client);
}