This repository has been archived on 2023-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
BWMirror-Generator/c/BWAPI/Client/ForceImpl.h

23 lines
415 B
C
Raw Normal View History

2014-08-05 04:43:14 -04:00
#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;
};
}