This commit is contained in:
Kyle
2020-08-11 10:19:32 +08:00
commit 768b4593be
16 changed files with 1571 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
#if defined _TransmitManager_included
#endinput
#endif
#define _TransmitManager_included
native void TransmitManager_AddEntityHooks(int entity);
native bool TransmitManager_SetEntityOwner(int entity, int target);
native bool TransmitManager_SetEntityState(int entity, int client, bool can);
/**
* _________________Do not edit below this line!_______________________
*/
public Extension __ext_movement =
{
name = "TransmitManager",
file = "TransmitManager.ext",
#if defined AUTOLOAD_EXTENSIONS
autoload = 1,
#else
autoload = 0,
#endif
#if defined REQUIRE_EXTENSIONS
required = 1,
#else
required = 0,
#endif
};