====== PluginUpdateVars plugin export ====== PlayClaw calls this optional export after some internal plugin variables changes to allow plugin to "cache" plugin variables. ====Syntax==== <code> PLUGIN_EXPORT void PluginUpdateVars( ); </code> ====Sample code==== <code> int my_var = 0; PLUGIN_EXPORT void PluginUpdateVars() { my_var = PC_GetPluginVarInt(m_dwPluginID, "my_variable"); } </code> ====See also==== Other [[plugin_sdk:exports:|export functions]]