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);}