File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,11 @@ type Participants interface {
4343 // Returns nil if not found or if handle == invalidEntityHandle (used when referencing no entity).
4444 FindByHandle (handle int ) * common.Player
4545 // SpottersOf returns a list of all players who have spotted the passed player.
46+ // This is NOT "Line of Sight" / FOV - look up "CSGO TraceRay" for that.
47+ // May not behave as expected with multiple spotters.
4648 SpottersOf (spotted * common.Player ) (spotters []* common.Player )
4749 // SpottedBy returns a list of all players that the passed player has spotted.
50+ // This is NOT "Line of Sight" / FOV - look up "CSGO TraceRay" for that.
51+ // May not behave as expected with multiple spotters.
4852 SpottedBy (spotter * common.Player ) (spotted []* common.Player )
4953}
You can’t perform that action at this time.
0 commit comments