Create BaseUnsectoredSync.cs

This commit is contained in:
Mister_Nebula 2021-08-14 14:45:36 +01:00
parent d2c91f5d5a
commit fc01efd407

View File

@ -0,0 +1,14 @@
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;
}
}