We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ca1fd4 commit a45718dCopy full SHA for a45718d
pkg/demoinfocs/events/events.go
@@ -504,6 +504,15 @@ type RankUpdate struct {
504
Player *common.Player // may be nil if the player has already disconnected
505
}
506
507
+// OtherDeath signals that there has occured a death of something that is not a player.
508
+// For example chickens.
509
+type OtherDeath struct {
510
+ Killer *common.Player // May be nil
511
+ OtherType string
512
+ OtherID int32
513
+ OtherPosition r3.Vector
514
+}
515
+
516
// SteamID64 converts SteamID32 to the 64-bit SteamID variant and returns the result.
517
// See https://developer.valvesoftware.com/wiki/SteamID
518
func (ru RankUpdate) SteamID64() uint64 {
0 commit comments