BWAPI
|
#include <BufferedDot.h>
Public Member Functions | |
BufferedDot (BWAPI::CoordinateType::Enum coordType, BufferedCategory id, int time, int x, int y, BWAPI::Color color) | |
virtual void | draw () |
Private Attributes | |
int | mX |
int | mY |
BWAPI::Color | mColor |
Definition at line 7 of file BufferedDot.h.
BufferedDot::BufferedDot | ( | BWAPI::CoordinateType::Enum | coordType, |
BufferedCategory | id, | ||
int | time, | ||
int | x, | ||
int | y, | ||
BWAPI::Color | color | ||
) | [inline] |
Definition at line 10 of file BufferedDot.h.
: BufferedItem(coordType, id, time) , mX(x) , mY(y) , mColor(color) {}
virtual void BufferedDot::draw | ( | ) | [inline, virtual] |
Reimplemented from BufferedItem.
Definition at line 17 of file BufferedDot.h.
References BWAPI::Broodwar, BWAPI::Game::drawDot(), mColor, BufferedItem::mCoordType, mX, and mY.
{ BWAPI::Broodwar->drawDot(mCoordType, mX, mY, mColor); }
BWAPI::Color BufferedDot::mColor [private] |
Definition at line 25 of file BufferedDot.h.
Referenced by draw().
int BufferedDot::mX [private] |
Definition at line 23 of file BufferedDot.h.
Referenced by draw().
int BufferedDot::mY [private] |
Definition at line 24 of file BufferedDot.h.
Referenced by draw().