mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-05-09 20:18:17 +03:00
Made entity parameter a constant instance
This commit is contained in:
parent
7386784765
commit
e7dbc25ca0
2 changed files with 2 additions and 2 deletions
|
@ -223,7 +223,7 @@ void G_CalcBoundsOfMove( Vector &start, Vector &end, Vector &mins, Vector
|
||||||
void G_ShowTrace( trace_t *trace, gentity_t *passent, const char *reason );
|
void G_ShowTrace( trace_t *trace, gentity_t *passent, const char *reason );
|
||||||
bool G_SightTrace(const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, Entity *passent, Entity *passent2, int contentmask, qboolean cylindrical, const char *reason );
|
bool G_SightTrace(const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, Entity *passent, Entity *passent2, int contentmask, qboolean cylindrical, const char *reason );
|
||||||
bool G_SightTrace( const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, gentity_t *passent, gentity_t *passent2, int contentmask, qboolean cylindrical, const char *reason );
|
bool G_SightTrace( const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, gentity_t *passent, gentity_t *passent2, int contentmask, qboolean cylindrical, const char *reason );
|
||||||
trace_t G_Trace(const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, Entity *passent, int contentmask, qboolean cylindrical, const char *reason, qboolean tracedeep = qfalse );
|
trace_t G_Trace(const Vector &start, const Vector &mins, const Vector &maxs, const Vector &end, const Entity *passent, int contentmask, qboolean cylindrical, const char *reason, qboolean tracedeep = qfalse );
|
||||||
trace_t G_Trace( vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, gentity_t *passent, int contentmask, qboolean cylindrical, const char *reason, qboolean tracedeep = qfalse );
|
trace_t G_Trace( vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, gentity_t *passent, int contentmask, qboolean cylindrical, const char *reason, qboolean tracedeep = qfalse );
|
||||||
void G_TraceEntities( Vector &start, Vector &mins, Vector &maxs, Vector &end, Container<Entity *>*victimlist, int contentmask, qboolean bIncludeTriggers = qfalse );
|
void G_TraceEntities( Vector &start, Vector &mins, Vector &maxs, Vector &end, Container<Entity *>*victimlist, int contentmask, qboolean bIncludeTriggers = qfalse );
|
||||||
|
|
||||||
|
|
|
@ -1227,7 +1227,7 @@ trace_t G_Trace
|
||||||
const Vector &mins,
|
const Vector &mins,
|
||||||
const Vector &maxs,
|
const Vector &maxs,
|
||||||
const Vector &end,
|
const Vector &end,
|
||||||
Entity *passent,
|
const Entity *passent,
|
||||||
int contentmask,
|
int contentmask,
|
||||||
qboolean cylinder,
|
qboolean cylinder,
|
||||||
const char *reason,
|
const char *reason,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue