Newer
Older
TheVengeance-Project-IADE-Unity2D / Assets / Scripts / Interfaces / INotifyObservers.cs
@Rackday Rackday on 29 Oct 236 bytes Major Update
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public interface INotifyObservers
  6. {
  7. public void NotifyObservers(NotificationType type, params (string key, object value)[] parameters);
  8. }