mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-16 16:15:24 +00:00
28 lines
572 B
C#
28 lines
572 B
C#
|
using QSB.Player;
|
|||
|
using QSB.Utility;
|
|||
|
using QSB.WorldSync;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace QSB.EchoesOfTheEye.SlideProjectors.WorldObjects
|
|||
|
{
|
|||
|
public class QSBSlideProjector : WorldObject<SlideProjector>
|
|||
|
{
|
|||
|
public override void Init()
|
|||
|
{
|
|||
|
base.Init();
|
|||
|
DebugLog.DebugWrite($"Init {LogName}");
|
|||
|
}
|
|||
|
|
|||
|
public uint ControllingPlayer;
|
|||
|
|
|||
|
public void OnChangeAuthority(uint newOwner)
|
|||
|
{
|
|||
|
DebugLog.DebugWrite($"{LogName} change ControllingPlayer to {newOwner}");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|