2018-12-05 01:19:31 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace RecrownedAthenaeum.Pipeline.NinePatch
|
|
|
|
|
{
|
2018-12-05 08:28:09 +00:00
|
|
|
|
public class NinePatchData
|
2018-12-05 01:19:31 +00:00
|
|
|
|
{
|
2018-12-07 23:58:59 +00:00
|
|
|
|
public string textureName;
|
2018-12-29 06:29:31 +00:00
|
|
|
|
public int left, right, down, top;
|
2018-12-07 23:58:59 +00:00
|
|
|
|
|
2018-12-29 06:29:31 +00:00
|
|
|
|
public NinePatchData(string textureName, int left, int right, int down, int top)
|
2018-12-07 23:58:59 +00:00
|
|
|
|
{
|
|
|
|
|
this.textureName = textureName;
|
2018-12-29 06:29:31 +00:00
|
|
|
|
this.left = left;
|
|
|
|
|
this.right = right;
|
|
|
|
|
this.down = down;
|
|
|
|
|
this.top = top;
|
2018-12-07 23:58:59 +00:00
|
|
|
|
}
|
2018-12-05 01:19:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|