16 lines
233 B
C++
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:
|
|
};
|
|
}
|
|
|