GameGraphics.GraphicsObject.SetSpriteID C# (CSharp) Method

SetSpriteID() public method

Sets the spriteID which will determine what sprite will be used for this object
public SetSpriteID ( int spriteID ) : void
spriteID int the ID of the sprite to be used
return void
        public void SetSpriteID(int spriteID)
        {
            this.spriteID = spriteID;
        }