Files
UltimateFishing/Assets/Scripts/Assembly-CSharp/UltimateWater/IWaterShore.cs
2026-02-21 16:45:37 +08:00

8 lines
102 B
C#

namespace UltimateWater
{
public interface IWaterShore
{
float GetDepthAt(float x, float z);
}
}