18 lines
639 B
Go
18 lines
639 B
Go
package companion
|
|
|
|
// SemanticEventProducerAvailability is intentionally fail-closed. The pinned
|
|
// UE4SS reference exposes command dispatch and online chat only; it does not
|
|
// expose a versioned server-side login, logout, position, vehicle, or network
|
|
// identity producer. Do not add a parser until such a source is versioned.
|
|
type SemanticEventProducerAvailability struct {
|
|
Available bool
|
|
Reason string
|
|
}
|
|
|
|
func VerifiedSemanticEventProducer() SemanticEventProducerAvailability {
|
|
return SemanticEventProducerAvailability{
|
|
Available: false,
|
|
Reason: "no versioned SCUM server-side semantic event producer is installed",
|
|
}
|
|
}
|