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