Equality operator
| 114 | |
| 115 | // Equality operator |
| 116 | RP3D_FORCE_INLINE bool Entity::operator==(const Entity& entity) const { |
| 117 | |
| 118 | return entity.id == id; |
| 119 | } |
| 120 | |
| 121 | // Inequality operator |
| 122 | RP3D_FORCE_INLINE bool Entity::operator!=(const Entity& entity) const { |
nothing calls this directly
no outgoing calls
no test coverage detected