Restruct: QURO << QURO.Animation; SpriteMapRegion -> Sprite: Now can draw itself

This commit is contained in:
quinnvoker
2018-12-19 09:16:17 -08:00
parent 06486e72fc
commit b8173d688d
19 changed files with 63 additions and 275 deletions
@@ -46,7 +46,7 @@ namespace SpriteMapEditor.SpriteMapModifications
public static void SelectFromList(ListBox listBox, List<int> newSelection)
{
listBox.SelectedIndices.Clear();
var source = (BindingList<SpriteMapRegion>)listBox.DataSource;
var source = (BindingList<Sprite>)listBox.DataSource;
foreach (int currentIndex in newSelection)
{
if(currentIndex < source.Count)