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/bwapi4-includes/BWAPI/Forceset.h

23 lines
429 B
C
Raw Normal View History

#pragma once
2015-02-07 12:16:07 -05:00
#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
2015-02-07 12:16:07 -05:00
class Forceset : public SetContainer<BWAPI::Force, std::hash<void*>>
{
public:
/// @copydoc ForceInterface::getPlayers
Playerset getPlayers() const;
};
}