13 lines
159 B
C#
13 lines
159 B
C#
#if !NOT_UNITY3D
|
|
|
|
namespace Zenject
|
|
{
|
|
public interface IPrefabProvider
|
|
{
|
|
UnityEngine.Object GetPrefab(InjectContext context);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|