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

16 lines
233 B
C
Raw Normal View History

#pragma once
2015-02-07 12:16:07 -05:00
#include "SetContainer.h"
namespace BWAPI
{
// Forward Declarations
class BulletInterface;
typedef BulletInterface *Bullet;
2015-02-07 12:16:07 -05:00
class Bulletset : public SetContainer<Bullet, std::hash<void*>>
{
public:
};
}