quantum-space-buddies/QSB/Syncs/Unsectored/BaseUnsectoredSync.cs
2021-08-14 14:45:36 +01:00

15 lines
370 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace QSB.Syncs.Unsectored
{
public abstract class BaseUnsectoredSync : SyncBase
{
public override bool IgnoreDisabledAttachedObject => false;
public override bool IgnoreNullReferenceTransform => false;
public override bool ShouldReparentAttachedObject => false;
}
}