touching method

bool touching([
  1. GameEntity? entity
])

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;
}