projectEli/Assets/NeoFPS/Core/Audio/ISurfaceFootstepAudio.cs
2022-11-06 20:28:33 -05:00

14 lines
288 B
C#

using UnityEngine;
namespace NeoFPS
{
public interface ISurfaceFootstepAudio
{
SurfaceAudioData footstepAudio { get; }
float minimumSpeed { get; }
float castRange { get; }
Vector3 castDirection { get; }
Space castSpace { get; }
}
}