#ifndef _FLAGG_HH_ #define _FLAG_HH_ #include "object.hh" #include "../team.hh" #include "../landscape.hh" class Flag : public Object { Team * team; public: void draw(); Team * getTeam(); Flag( float, float, Team * ); }; #endif