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