mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 06:51:36 +00:00
15 lines
370 B
C#
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;
|
|||
|
}
|
|||
|
}
|