mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-01 03:32:38 +00:00
12 lines
276 B
C#
12 lines
276 B
C#
|
using QSB.JellyfishSync.WorldObjects;
|
|||
|
using QSB.WorldSync;
|
|||
|
|
|||
|
namespace QSB.JellyfishSync
|
|||
|
{
|
|||
|
public class JellyfishManager : WorldObjectManager
|
|||
|
{
|
|||
|
protected override void RebuildWorldObjects(OWScene scene)
|
|||
|
=> QSBWorldSync.Init<QSBJellyfish, JellyfishController>();
|
|||
|
}
|
|||
|
}
|