Skip to content

Commit

Permalink
Update ENTITY/IsEntityAtCoord.md
Browse files Browse the repository at this point in the history
align enum convention with other natives

Co-authored-by: Jacob Paulin <[email protected]>
  • Loading branch information
BJDubb and JayPaulinCodes authored Nov 20, 2024
1 parent a1fce57 commit 35c8597
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ENTITY/IsEntityAtCoord.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ Checks if the entity's root is located in the given area defined by a centre poi
Specifying a non-zero transport mode will return false early if the entity does not meet the requirements of the transport mode.
```c
enum transportMode
enum eTransportMode
{
TM_ANY,
TM_ON_FOOT,
TM_IN_VEHICLE,
TM_ANY = 0,
TM_ON_FOOT = 1,
TM_IN_VEHICLE = 2,
}
```

Expand Down

0 comments on commit 35c8597

Please sign in to comment.