sm-ext-connect/connect.inc
sapphonie 0d9e80e474
Finish updating to newdecls (#9)
* newdecls for ext struct

* Update connect.sp

* spaces2tabs
2021-10-23 21:51:38 +00:00

24 lines
469 B
SourcePawn

#if defined _connect_included
#endinput
#endif
#define _connect_included
forward bool OnClientPreConnectEx(const char[] name, char password[255], const char[] ip, const char[] steamID, char rejectReason[255]);
public Extension __ext_Connect =
{
name = "Connect",
file = "connect.ext",
#if defined AUTOLOAD_EXTENSIONS
autoload = 1,
#else
autoload = 0,
#endif
#if defined REQUIRE_EXTENSIONS
required = 1,
#else
required = 0,
#endif
}