mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-09 21:59:16 +00:00
12 lines
271 B
C#
12 lines
271 B
C#
using UnityEngine;
|
|
|
|
namespace QSB.Utility.VariableSync;
|
|
|
|
[UsedInUnityProject]
|
|
public class Vector3VariableSyncer : BaseVariableSyncer<Vector3>
|
|
{
|
|
/// <summary>
|
|
/// hack for ShipThrusterVariableSyncer
|
|
/// </summary>
|
|
public bool public_HasChanged() => HasChanged();
|
|
} |