mirror of
https://github.com/Dongyifengs/AssetStudio-Genshin-MoYi.git
synced 2025-05-06 11:29:18 +08:00
18 lines
370 B
C#
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);
|
|
}
|
|
}
|