Origin Preset Applier Implementer

This commit is contained in:
quinnvoker
2018-12-02 17:10:01 -08:00
parent c0c757650c
commit de9d120a23
6 changed files with 360 additions and 161 deletions
+16
View File
@@ -0,0 +1,16 @@
using System.Collections.Generic;
using System.Drawing;
using QURO;
namespace SpriteMapEditor
{
public class SpriteMapProject
{
public Image SpriteSheet { get; set; }
public List<SpriteMapRegion> SpriteMap { get; set; }
public SpriteMapProject()
{
}
}
}