14 lines
206 B
C#
Raw Normal View History

2021-05-15 21:31:29 +01:00
using UnityEngine;
namespace QSB.Syncs
{
public interface ISync<T>
{
Transform ReferenceTransform { get; }
T AttachedObject { get; }
bool IsReady { get; }
bool UseInterpolation { get; }
}
}