No, no no. It's important someone tells the developers that hitting a building makes the fighter explode and landing on water does not.
void collision_detection(player p, vehicle v, obstacle o) {
/* ... */
if (v = plane && o = building)
kill p;
}
I can understand the...