mirror of
https://github.com/ConjureETS/PillowFight.git
synced 2026-03-24 17:10:59 +00:00
9 lines
128 B
C#
9 lines
128 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public interface IMomObserver
|
|
{
|
|
void NotifyWarning();
|
|
void Notify();
|
|
}
|