Initial Commit
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace FlappyBird.Core
|
||||
{
|
||||
public class PipePassedNotifier : IPipePassedNotifier
|
||||
{
|
||||
public event Action OnPipePassed;
|
||||
|
||||
public void NotifyPipePassed()
|
||||
{
|
||||
OnPipePassed?.Invoke();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user