(EdictIterator from, EdictFindFilter eff,
String s, GameExportsImpl gameExports)
| 102 | |
| 103 | // comfort version (rst) |
| 104 | static edict_t G_FindEdict(EdictIterator from, EdictFindFilter eff, |
| 105 | String s, GameExportsImpl gameExports) { |
| 106 | EdictIterator ei = G_Find(from, eff, s, gameExports); |
| 107 | if (ei == null) |
| 108 | return null; |
| 109 | else |
| 110 | return ei.o; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Returns entities that have origins within a spherical area. |
no test coverage detected