Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / IObserver.cs
@Rackday Rackday on 3 Sep 149 bytes Minor Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IObserver
{
    public void OnNotify(object obj);
}