#if defined _devms_core_included
  #endinput
#endif
#define _devms_core_included

#if AMXX_VERSION_NUM >= 175
	#pragma reqlib devms_core
	#if !defined AMXMODX_NOAUTOLOAD
		#pragma loadlib devms_core
	#endif
#else
	#pragma library devms_core
#endif

/** client index **/
enum
{
	NON_GS_CLIENT,
	GS_CLIENT
};

/** restriction index **/
enum
{
	REST_OFF,
	REST_ON
};

/**
 * Get player client
 * 
 * @param id				player index.
 * 
 * @return					client index.
 */
native dc_gs_client(id);

/**
 * Called when restriction settings changes
 * @param iMode				currend restriction index.
 */
forward dc_rest_change(iMode);