#ifndef PASSIVE_H #define PESSIVE_H #include "Component.h" #include "terminal.h" using namespace terminal_star85; class Passive: public Component{ public: Passive(int x1, int y1, int x2, int y2); bool handle_event(Event eve); void show(); }; #endif