23 lines
429 B
C++
23 lines
429 B
C++
#pragma once
|
|
#include "SetContainer.h"
|
|
|
|
namespace BWAPI
|
|
{
|
|
// Forward Declarations
|
|
class ForceInterface;
|
|
typedef ForceInterface *Force;
|
|
class Playerset;
|
|
|
|
/// A container that holds a group of Forces.
|
|
///
|
|
/// @see BWAPI::Force, BWAPI::Vectorset
|
|
class Forceset : public SetContainer<BWAPI::Force, std::hash<void*>>
|
|
{
|
|
public:
|
|
|
|
/// @copydoc ForceInterface::getPlayers
|
|
Playerset getPlayers() const;
|
|
};
|
|
}
|
|
|