initial saving working (possibly)

This commit is contained in:
2017-09-16 08:23:47 -05:00
parent 4f2d190b6c
commit e9f1a9a3ed
4 changed files with 22 additions and 9 deletions

View File

@ -35,11 +35,11 @@ namespace SpriteLibrary
}
}
internal class SpriteInfo
public class SpriteInfo
{
public string SpriteName = "";
public int ViewPercent = 100; //The percent size of the sprite. 100 is full. 50 is half-size
public List<AnimationInfo> Animations = new List<AnimationInfo>();
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