//Modules切图数据 第一个数据为Image索引，第二个为横坐标，第三个为纵坐标，第四个为宽，第五个为高
short[][] modules = {
	{0,0,0,48,31},
	{0,0,31,58,18},
	{0,0,49,55,15},
	{0,0,64,55,17},
	{0,0,82,55,17},
	{0,50,1,38,18},
	{0,58,22,32,25},
	{0,57,48,33,23},
	{0,62,74,24,21},
};
//Frames数据，第一组为攻击范围，第二组为被攻击范围，之后为Modules数据
//Modules数据，第一个为ModulesId，第二个为Transform，第三个为X偏移量，第四个为Y偏移量
frames = {
	{//stand01
		{0,0,0,0},{0,0,0,0},{6,0,-16,-25}
	},{//stand02
		{0,0,0,0},{0,0,0,0},{7,0,-17,-23}
	},{//run01
		{0,0,0,0},{0,0,0,0},{1,0,-30,-16}
	},{//run02
		{0,0,0,0},{0,0,0,0},{2,0,-28,-15}
	},{//run03
		{0,0,0,0},{0,0,0,0},{3,0,-27,-17}
	},{//run04
		{0,0,0,0},{0,0,0,0},{4,0,-27,-17}
	},{//att01
		{0,0,0,0},{0,0,0,0},{5,0,-22,-18}
	},{//att02
		{0,0,0,0},{0,0,0,0},{0,0,-33,-35}
	},{//beHit01
		{0,0,0,0},{0,0,0,0},{8,0,-8,-21}
	},{//beHit02
		{0,0,0,0},{0,0,0,0},{8,0,-7,-21}
	},
};
//Actions数据，第一个为FrameId，第二个X偏移量，第三为Y偏移量，第四个为当前帧需要绘制的次数（帧延时），至少1次，
actions = {
	{//stand
		{0,0,0,2},{1,0,0,2},
	},{//run
		{2,0,0,1},{3,0,0,1},{4,0,0,1},{5,0,0,1},
	},{//att
		{0,0,0,1},{6,0,0,1},{7,0,0,0},{0,0,0,1},
	},{//beHit
		{8,0,0,1},{9,0,0,1},
	},
};
