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/Bulletset.h
2015-02-07 18:16:07 +01:00

16 lines
233 B
C++

#pragma once
#include "SetContainer.h"
namespace BWAPI
{
// Forward Declarations
class BulletInterface;
typedef BulletInterface *Bullet;
class Bulletset : public SetContainer<Bullet, std::hash<void*>>
{
public:
};
}