UpdateBeacon() private méthode

Called when the train passes a beacon.
private UpdateBeacon ( int type, int sectionIndex, int optional ) : void
type int The beacon type.
sectionIndex int The section the beacon is attached to, or -1 for the next red signal.
optional int Optional data attached to the beacon.
Résultat void
Exemple #1
0
 /// <inheritdoc/>
 public override void UpdateBeacon(int transponderType, int sectionIndex, int optional)
 {
     if (Plugin != null)
     {
         Plugin.UpdateBeacon(transponderType, sectionIndex, optional);
     }
 }