mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-30 03:32:47 +00:00
10 lines
283 B
C#
10 lines
283 B
C#
namespace QSB.Syncs.Unsectored
|
|
{
|
|
public abstract class BaseUnsectoredSync : SyncBase
|
|
{
|
|
protected override bool AllowDisabledAttachedObject => false;
|
|
protected override bool AllowNullReferenceTransform => false;
|
|
protected override bool DestroyAttachedObject => false;
|
|
}
|
|
}
|