Files
YarikStudio/AssetStudio/Classes/RuntimeAnimatorController.cs
2023-01-06 22:33:59 +04: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)
{
}
}
}