mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
15 lines
423 B
C#
15 lines
423 B
C#
|
using VRC.SDK3.Avatars.Components;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core.editor
|
|||
|
{
|
|||
|
internal class BuildContext
|
|||
|
{
|
|||
|
internal readonly VRCAvatarDescriptor AvatarDescriptor;
|
|||
|
internal readonly AnimationDatabase AnimationDatabase = new AnimationDatabase();
|
|||
|
|
|||
|
public BuildContext(VRCAvatarDescriptor avatarDescriptor)
|
|||
|
{
|
|||
|
AvatarDescriptor = avatarDescriptor;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|