Files
YarikStudio/AssetStudio/Classes/RuntimeAnimatorController.cs
2022-09-27 17:40:31 +04:00

18 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace AssetStudio
{
public abstract class RuntimeAnimatorController : NamedObject
{
protected RuntimeAnimatorController(ObjectReader reader) : base(reader)
{
}
public abstract bool IsContainsAnimationClip(AnimationClip clip);
}
}