diff --git a/SpriteLibrary/SpriteDatabase.cs b/SpriteLibrary/SpriteDatabase.cs index 86f7df9..361d22e 100644 --- a/SpriteLibrary/SpriteDatabase.cs +++ b/SpriteLibrary/SpriteDatabase.cs @@ -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) { diff --git a/SpriteLibrary/SpriteEntryForm.cs b/SpriteLibrary/SpriteEntryForm.cs index 8ece2de..01c1c51 100644 --- a/SpriteLibrary/SpriteEntryForm.cs +++ b/SpriteLibrary/SpriteEntryForm.cs @@ -23,6 +23,8 @@ namespace SpriteLibrary List SpriteInformation = new List(); 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 ListToWorkOn, Size GridSize) {