Merge pull request #1 from srcdslab/chore/update-build-system
feat: update build system
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
#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);
|
||||
native bool TransmitManager_GetEntityState(int entity, int client);
|
||||
native bool TransmitManager_IsEntityHooked(int entity);
|
||||
|
||||
/**
|
||||
* _________________Do not edit below this line!_______________________
|
||||
*/
|
||||
public Extension __ext_transmit =
|
||||
{
|
||||
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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user