AGS.Types.SpriteFolder.NotifyClientsOfUpdate C# (CSharp) Method

NotifyClientsOfUpdate() public method

Causes the SpritesUpdated event to be fired. You should call this if you modify the sprites and need the Sprite Manager window to update to reflect the changes. Only call this on the Root sprite folder.
public NotifyClientsOfUpdate ( ) : void
return void
        public void NotifyClientsOfUpdate()
        {
            if (SpritesUpdated != null)
            {
                SpritesUpdated();
            }
        }