Files
Fishing2/Packages/com.waveharmonic.crest/Runtime/Scripts/Data/Query/Flow/FlowQuery.cs
2025-05-10 12:49:47 +08:00

15 lines
377 B
C#

// Crest Water System
// Copyright © 2024 Wave Harmonic. All rights reserved.
namespace WaveHarmonic.Crest
{
/// <summary>
/// Samples horizontal motion of water volume
/// </summary>
sealed class FlowQuery : QueryBase, IFlowProvider
{
public FlowQuery(WaterRenderer water) : base(water) { }
protected override int Kernel => 1;
}
}