Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IObserver.cs
@Rackday Rackday on 29 Oct 172 bytes Major Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IObserver
{
    public void OnNotify(ObserverNotification notification);
}