move values to the correct place

This commit is contained in:
Tim Young 2017-09-16 15:18:49 -05:00
parent e9f1a9a3ed
commit 7e22a57ca5
2 changed files with 2 additions and 1 deletions

View File

@ -27,7 +27,6 @@ namespace SpriteLibrary
ResourceManager myResourceManager = null;
string Filename = "";
Size SnapGridSize = new Size(5, 5);
int CurrentSIIndex = -1; //The information item we are editing. -1 means it is a new one.
public SpriteDatabase(ResourceManager theResourceManager, string filename)
{

View File

@ -23,6 +23,8 @@ namespace SpriteLibrary
List<SpriteInfo> SpriteInformation = new List<SpriteInfo>();
Size SnapGridSize = new Size(5,5);
SpriteDatabase myDatabase = null;
int CurrentSIIndex = -1; //The information item we are editing. -1 means it is a new one.
int CurrentSIAnimation = -1;
internal SpriteEntryForm(SpriteDatabase theDatabase, List<SpriteInfo> ListToWorkOn, Size GridSize)
{