AGS.Types.SpriteFolder.NotifyClientsOfUpdate C# (CSharp) Méthode

NotifyClientsOfUpdate() public méthode

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
Résultat void
        public void NotifyClientsOfUpdate()
        {
            if (SpritesUpdated != null)
            {
                SpritesUpdated();
            }
        }