#include "Passive.h" Passive::Passive(int x1, int y1, int x2, int y2): Component(x1, y1, x2, y2){ } bool Passive::handle_event(Event eve){ return false; } void Passive::show(){ }