mirror of
https://github.com/2revoemag/PSF-BotServer.git
synced 2026-04-23 21:05:21 +00:00
16 lines
490 B
Scala
16 lines
490 B
Scala
// Copyright (c) 2017 PSForever
|
|
package services.vehicle
|
|
|
|
import net.psforever.objects.Vehicle
|
|
import net.psforever.objects.zones.Zone
|
|
|
|
final case class VehicleServiceMessage(forChannel : String, actionMessage : VehicleAction.Action)
|
|
|
|
object VehicleServiceMessage {
|
|
final case class GiveActorControl(vehicle : Vehicle, actorName : String)
|
|
final case class RevokeActorControl(vehicle : Vehicle)
|
|
|
|
final case class Decon(msg : Any)
|
|
|
|
final case class AMSDeploymentChange(zone : Zone)
|
|
}
|