/*
	Surf Olympics Points System,
	(c) Hatrick,
	
	surf.inc file
	Location: "$moddir\cstrike\addons\amxmodx\scripting\include\"
*/

#if defined _surf_included
  #endinput
#endif
#define _surf_included


/**
 * Get user gold
 *
 */
native get_user_gold(index);

/**
 * Set user gold
 *
 */
native set_user_gold(index, amount);

/**
 * Add user gold
 *
 */
native add_user_gold(index, amount);

/**
 * Delete user gold
 *
 */
native del_user_gold(index, amount);