more work on the form

This commit is contained in:
2017-09-17 08:13:04 -05:00
parent c438320a5e
commit 32c3fa21a7
3 changed files with 210 additions and 150 deletions

View File

@ -21,9 +21,8 @@ namespace SpriteLibrary
public string ImageName = "";
public int Width = -1;
public int Height = -1;
public int AnimSpeed = 200;
public int NumFrames = 1;
public int ViewPercent = 100; //The percent size of the sprite. 100 is full. 50 is half-size
public int AnimSpeed = 200;
/// <summary>
/// A generic cloning method that works when everything is public
@ -40,7 +39,7 @@ namespace SpriteLibrary
internal string SpriteName = "";
internal int ViewPercent = 100; //The percent size of the sprite. 100 is full. 50 is half-size
internal List<AnimationInfo> Animations = new List<AnimationInfo>();
/// <summary>
/// A generic cloning method that works when everything is public
/// </summary>