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