- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- namespace MyCollections.Interfaces
- {
- public interface IReceiver<in T>
- {
- public void Receive(T value);
- }
- public interface IReceiver<in T, in T1>
- {
- public void Receive(T value, T1 value1);
- }
- }