2015-08-15 23:11:45 -04:00

7 lines
88 B
C#

namespace DeathBook.Util
{
public interface IObserver
{
void Notify();
}
}