mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2025-02-06 13:52:49 +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();
|
|
}
|
|
} |