Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IReceiver.cs
@Rackday Rackday on 29 Oct 312 bytes Major Update
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. namespace MyCollections.Interfaces
  5. {
  6. public interface IReceiver<in T>
  7. {
  8. public void Receive(T value);
  9. }
  10. public interface IReceiver<in T, in T1>
  11. {
  12. public void Receive(T value, T1 value1);
  13. }
  14. }