BWAPI
|
#include <BufferedBox.h>
Public Member Functions | |
BufferedBox (BWAPI::CoordinateType::Enum coordType, BufferedCategory id, int time, int left, int top, int right, int bottom, BWAPI::Color color, bool solid) | |
virtual void | draw () |
Private Attributes | |
int | mLeft |
int | mTop |
int | nRight |
int | mBottom |
BWAPI::Color | mColor |
bool | mIsSolid |
Definition at line 7 of file BufferedBox.h.
BufferedBox::BufferedBox | ( | BWAPI::CoordinateType::Enum | coordType, |
BufferedCategory | id, | ||
int | time, | ||
int | left, | ||
int | top, | ||
int | right, | ||
int | bottom, | ||
BWAPI::Color | color, | ||
bool | solid | ||
) | [inline] |
Definition at line 10 of file BufferedBox.h.
virtual void BufferedBox::draw | ( | ) | [inline, virtual] |
Reimplemented from BufferedItem.
Definition at line 20 of file BufferedBox.h.
References BWAPI::Broodwar, BWAPI::Game::drawBox(), mBottom, mColor, BufferedItem::mCoordType, mIsSolid, mLeft, mTop, and nRight.
{ BWAPI::Broodwar->drawBox(mCoordType, mLeft, mTop, nRight, mBottom, mColor, mIsSolid); }
int BufferedBox::mBottom [private] |
Definition at line 29 of file BufferedBox.h.
Referenced by draw().
BWAPI::Color BufferedBox::mColor [private] |
Definition at line 30 of file BufferedBox.h.
Referenced by draw().
bool BufferedBox::mIsSolid [private] |
Definition at line 31 of file BufferedBox.h.
Referenced by draw().
int BufferedBox::mLeft [private] |
Definition at line 26 of file BufferedBox.h.
Referenced by draw().
int BufferedBox::mTop [private] |
Definition at line 27 of file BufferedBox.h.
Referenced by draw().
int BufferedBox::nRight [private] |
Definition at line 28 of file BufferedBox.h.
Referenced by draw().