projectEli/Assets/NeoFPS/Core/Surfaces/BaseSurface.cs

14 lines
391 B
C#
Raw Normal View History

2022-11-07 01:28:33 +00:00
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);
}
}