#ifndef BugBots_Team_hpp #define BugBots_Team_hpp #include"BugBots.hpp" class Team { public: Team(); virtual void TeamInit() = 0; virtual bool Update() = 0; private: int m_points; friend World; }; #endif