PillowFight/Assets/Scripts/IMomObserver.cs

9 lines
128 B
C#

using UnityEngine;
using System.Collections;
public interface IMomObserver
{
void NotifyWarning();
void Notify();
}