using System.Numerics; using System.Threading.Tasks; namespace Impostor.Api.Net.Inner.Objects.Components { public interface IInnerCustomNetworkTransform : IInnerNetObject { /// /// Snaps the current to the given position . /// /// The target position. /// Task that must be awaited. ValueTask SnapToAsync(Vector2 position); } }