mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-08 09:41:07 +00:00
13 lines
336 B
C#
13 lines
336 B
C#
using QSB.JellyfishSync.WorldObjects;
|
|
using QSB.Messaging;
|
|
|
|
namespace QSB.JellyfishSync.Messages
|
|
{
|
|
public class JellyfishRisingMessage : QSBWorldObjectMessage<QSBJellyfish, bool>
|
|
{
|
|
public JellyfishRisingMessage(bool isRising) => Value = isRising;
|
|
|
|
public override void OnReceiveRemote() => WorldObject.SetIsRising(Value);
|
|
}
|
|
}
|