touching method
Returns true if the bounding volume of the given game entity touches/intersects the trigger region. Must be implemented by all concrete trigger regions.
Implementation
bool touching([GameEntity? entity]) {
return false;
}
Returns true if the bounding volume of the given game entity touches/intersects the trigger region. Must be implemented by all concrete trigger regions.
bool touching([GameEntity? entity]) {
return false;
}