19 lines
418 B
C#
19 lines
418 B
C#
using Platformer.Core;
|
|
using Platformer.Mechanics;
|
|
|
|
namespace Platformer.Gameplay
|
|
{
|
|
/// <summary>
|
|
/// Fired when the player character lands after being airborne.
|
|
/// </summary>
|
|
/// <typeparam name="PlayerLanded"></typeparam>
|
|
public class PlayerLanded : Simulation.Event<PlayerLanded>
|
|
{
|
|
public PlayerController player;
|
|
|
|
public override void Execute()
|
|
{
|
|
|
|
}
|
|
}
|
|
} |