mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-29 00:32:43 +00:00
12 lines
309 B
C#
12 lines
309 B
C#
namespace QSB.WorldSync;
|
|
|
|
/// <summary>
|
|
/// todo make sure this isn't totally broken in weird esoteric cases oh god oh fuck
|
|
/// </summary>
|
|
internal class QSBOWRigidbody : WorldObject<OWRigidbody>
|
|
{
|
|
public override void SendInitialState(uint to) { }
|
|
|
|
public override bool ShouldDisplayDebug() => false;
|
|
}
|