Adding initial sprite database and sprite entry form

This commit is contained in:
2017-09-15 15:52:59 -05:00
parent 4d49f58809
commit 846d4b569f
5 changed files with 612 additions and 0 deletions

View File

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace SpriteLibrary
{
internal class SpriteInfo
{
public string SpriteName = "";
public Point StartPoint = new Point(-1, -1);
public string ImageName = "";
public int Width = -1;
public int Height = -1;
public int AnimSpeed = 200;
public int NumAnimations = 1;
public int ViewPercent = 100; //The percent size of the sprite. 100 is full. 50 is half-size
}
}