summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XUtliPoolLib/XCastChain.cs
blob: 4d2e41273264e4d2287a7505da778dd7626e450c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.ComponentModel;
using UnityEngine;

namespace XUtliPoolLib
{
	[Serializable]
	public class XCastChain
	{
		[SerializeField]
		[DefaultValue(0f)]
		public float At = 0f;

		[SerializeField]
		[DefaultValue(0)]
		public int TemplateID = 0;

		[SerializeField]
		public string Name = null;
	}
}