mirror of
https://github.com/rehlds/reapi.git
synced 2025-03-26 12:19:07 +03:00
20 lines
389 B
PHP
20 lines
389 B
PHP
#if defined _reapi_engine_included
|
|
#endinput
|
|
#endif
|
|
|
|
#define _reapi_engine_included
|
|
|
|
#include <reapi_engine_const.inc>
|
|
|
|
/*
|
|
* Sets entvars data for an entity.
|
|
* Use the var_* EntVars enum
|
|
*/
|
|
native set_entvar(const index, const EntVars:var, any:...);
|
|
|
|
/*
|
|
* Returns entvar data from an entity.
|
|
* Use the var_* EntVars enum
|
|
*/
|
|
native any:get_entvar(const index, const EntVars:var, any:...);
|