mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-06 01:00:16 +00:00
25 lines
593 B
C#
25 lines
593 B
C#
using QSB.EchoesOfTheEye.Ghosts.Actions;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace QSB.EchoesOfTheEye.Ghosts;
|
|
|
|
public static class QSBGhostZone2Director
|
|
{
|
|
public static ElevatorStatus[] ElevatorsStatus;
|
|
|
|
public struct ElevatorStatus
|
|
{
|
|
public GhostZone2Director.ElevatorPair elevatorPair;
|
|
public bool activated;
|
|
public bool lightsDeactivated;
|
|
public bool deactivated;
|
|
public float timeSinceArrival;
|
|
public QSBElevatorWalkAction elevatorAction;
|
|
public GhostController ghostController;
|
|
}
|
|
}
|