BWAPI
|
00001 #pragma once 00002 #include <set> 00003 #include <string> 00004 00005 namespace BWAPI 00006 { 00007 class Player; 00008 00011 class Force 00012 { 00013 public : 00015 virtual int getID() const = 0; 00016 00018 virtual std::string getName() const = 0; 00019 00021 virtual std::set<Player*> getPlayers() const = 0; 00022 }; 00023 }