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 06:03:00 +00:00
|
|
|
|
class NinePatchFile
|
2018-12-05 01:19:31 +00:00
|
|
|
|
{
|
|
|
|
|
public string name;
|
|
|
|
|
public string bounds;
|
|
|
|
|
public int a, b, c, d;
|
|
|
|
|
}
|
|
|
|
|
}
|