using Godot; using GTweens.Delegates; using GTweens.Tweeners; using GTweensGodot.Interpolators; namespace GTweensGodot.Tweeners; public sealed class GodotVector3Tweener : Tweener { public GodotVector3Tweener( Getter currentValueGetter, Setter setter, Getter to, float duration, ValidationDelegates.Validation validation ) : base( currentValueGetter, setter, to, duration, GodotVector3Interpolator.Instance, validation ) { } }