Disable entWatch4 autobuild.

Fix gitignore and missing include folders
compile script python backwards compat.
This commit is contained in:
BotoX
2017-08-04 03:07:07 +02:00
parent 0749b4de9c
commit e05a9ac0b4
14 changed files with 345 additions and 7 deletions
@@ -1,33 +0,0 @@
#if defined entWatch_restrictions_included
#endinput
#endif
#define entWatch_restrictions_included
public SharedPlugin __pl_entWatch_core =
{
name = "entWatch-restrictions",
file = "entWatch-restrictions.smx",
#if defined REQUIRE_PLUGIN
required = 1
#else
required = 0
#endif
};
#if !defined REQUIRE_PLUGIN
public void __pl_entWatch_core_SetNTVOptional()
{
MarkNativeAsOptional("EW_ClientRestrict");
MarkNativeAsOptional("EW_ClientUnrestrict");
MarkNativeAsOptional("EW_ClientRestricted");
}
#endif
native bool EW_ClientRestrict(int client, int target, int length);
native bool EW_ClientUnrestrict(int client, int target);
native bool EW_ClientRestricted(int client);
forward void EW_OnClientRestricted(int client, int target, int length);
forward void EW_OnClientUnrestricted(int client, int target);