11 lines
166 B
C#
11 lines
166 B
C#
using System;
|
|
|
|
namespace FlappyBird.Core
|
|
{
|
|
public interface IPipePassedNotifier
|
|
{
|
|
event Action OnPipePassed;
|
|
void NotifyPipePassed();
|
|
}
|
|
}
|