2D-Platformer/Assets/Scripts/Facades/IActorFacade.cs
2022-02-12 12:53:50 +02:00

11 lines
No EOL
181 B
C#

using System;
using UnityEngine;
public interface IActorFacade
{
float StepAmount { get; }
AudioSource FeetAudio { get; }
event Action<Collision2D> OnCollisionEnterEvent;
}