AGS.Types.SpriteFolder.NotifyClientsOfUpdate C# (CSharp) 메소드

NotifyClientsOfUpdate() 공개 메소드

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