mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
12 lines
310 B
C#
12 lines
310 B
C#
|
namespace nadena.dev.modular_avatar.core
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Tag class used internally to mark reactive components. Not publicly extensible.
|
|||
|
/// </summary>
|
|||
|
public abstract class ReactiveComponent : AvatarTagComponent
|
|||
|
{
|
|||
|
internal ReactiveComponent()
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|