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

14 lines
391 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NeoFPS.Constants;
namespace NeoFPS
{
public abstract class BaseSurface : MonoBehaviour
{
public abstract FpsSurfaceMaterial GetSurface ();
public abstract FpsSurfaceMaterial GetSurface (RaycastHit hit);
public abstract FpsSurfaceMaterial GetSurface (ControllerColliderHit hit);
}
}