modular-avatar/Packages/nadena.dev.modular-avatar/Runtime/Menu/ActionController.cs
2023-05-14 20:18:41 +09:00

15 lines
442 B
C#

using UnityEngine;
namespace nadena.dev.modular_avatar.core
{
/// <summary>
/// Tag class that marks components that actions can be attached to.
///
/// Note that this is public due to C# protection rules, but is not a supported API for editor scripts and may
/// change in point releases.
/// </summary>
[DisallowMultipleComponent]
public abstract class ActionController : AvatarTagComponent
{
}
}