From a44750b44201ab629f5b4f68f54a5198a3d8e183 Mon Sep 17 00:00:00 2001 From: Tim Young Date: Mon, 25 Sep 2017 13:49:01 -0500 Subject: [PATCH] BaseImageLocation doc update --- SpriteLibrary/Sprite.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SpriteLibrary/Sprite.cs b/SpriteLibrary/Sprite.cs index d814085..c4983c6 100644 --- a/SpriteLibrary/Sprite.cs +++ b/SpriteLibrary/Sprite.cs @@ -206,7 +206,9 @@ namespace SpriteLibrary /// public bool HasBeenDrawn { get { return _HasBeenDrawn; } private set { _HasBeenDrawn = value; } } /// - /// The sprite location as found on the base image. This is usually the easiest location to use. + /// The sprite location as found on the base image. This is usually the easiest location to use. Use this to + /// figure out where the sprite is, but use the function to + /// move it to another location. /// public Point BaseImageLocation { get { return new Point(xPositionOnImage, yPositionOnImage); } } ///