// Crest Water System
// Copyright © 2024 Wave Harmonic. All rights reserved.
using UnityEngine;
namespace WaveHarmonic.Crest.Watercraft
{
///
/// Controls provide input whether from the player or otherwise. Extend to
/// implement a control. See derived classes for examples.
///
public abstract class Control : MonoBehaviour
{
///
/// Provides input for controllers. XYZ is steer, float and drive respectively.
///
public abstract Vector3 Input { get; }
}
}