13 lines
185 B
C#
13 lines
185 B
C#
using UnityEngine;
|
|
|
|
namespace Zenject.Tests.Bindings.FromSubContainerPrefabResource
|
|
{
|
|
public interface IFoo
|
|
{
|
|
}
|
|
|
|
public class Foo : MonoBehaviour, IFoo
|
|
{
|
|
}
|
|
}
|