BWAPI
trunk/bwapi/BWAPI/Source/BW/UnitTarget.h
Go to the documentation of this file.
00001 #pragma once
00002 #include <Util/Types.h>
00003 #include <BW/Unit.h>
00004 namespace BWAPI { class UnitImpl; }
00005 
00006 #pragma pack(1)
00007 namespace BW
00008 {
00009 
00022   class UnitTarget
00023   {
00024     public :
00026       UnitTarget();
00028       UnitTarget(BWAPI::UnitImpl* target);
00029       UnitTarget(BW::Unit* target);
00030       u16 getTarget() const;
00031     private :
00032       u16 targetID; 
00033   };
00034 };
00035 #pragma pack()
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines