Files
AssetStudio/AssetStudio/Classes/RuntimeAnimatorController.cs
Perfare bfaa207853 Refactor read assets
Generic PPtr
Misc
2018-11-21 15:37:56 +08:00

16 lines
295 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)
{
}
}
}