17 lines
217 B
C#
17 lines
217 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Gameplay.Character
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class LTAnimStateInfo
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
public string stateName;
|
|||
|
|
|
|||
|
|
public string clipName;
|
|||
|
|
|
|||
|
|
public float clipLength;
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|