23 lines
415 B
C
23 lines
415 B
C
|
#pragma once
|
||
|
#include <BWAPI.h>
|
||
|
#include "ForceData.h"
|
||
|
#include <set>
|
||
|
#include <string>
|
||
|
|
||
|
namespace BWAPI
|
||
|
{
|
||
|
class Game;
|
||
|
class Player;
|
||
|
class Unit;
|
||
|
class ForceImpl : public Force
|
||
|
{
|
||
|
private:
|
||
|
const ForceData* self;
|
||
|
int id;
|
||
|
public:
|
||
|
ForceImpl(int id);
|
||
|
virtual int getID() const;
|
||
|
virtual std::string getName() const;
|
||
|
virtual std::set<Player*> getPlayers() const;
|
||
|
};
|
||
|
}
|