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

public interface INotifyObservers
{
    public void NotifyObservers(NotificationType type, params (string key, object value)[] parameters);
}