16 lines
210 B
C#
Raw Normal View History

2021-03-22 19:20:51 +08:00
namespace Mapbox.Unity.Location
{
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public interface IAngleSmoothing
{
void Add(double angle);
double Calculate();
}
}