mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 02:35:06 +08:00
9 lines
202 B
C#
9 lines
202 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace nadena.dev.modular_avatar.core
|
|||
|
{
|
|||
|
internal interface IHaveObjReferences
|
|||
|
{
|
|||
|
IEnumerable<AvatarObjectReference> GetObjectReferences();
|
|||
|
}
|
|||
|
}
|