13 lines
291 B
C#
13 lines
291 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
namespace BITKit
|
||
|
{
|
||
|
public class TestAssetableReference : MonoBehaviour
|
||
|
{
|
||
|
[SerializeReference, SubclassSelector] public IReference reference;
|
||
|
public UnityReference UnityReference;
|
||
|
}
|
||
|
}
|