AzerothCore 3.3.5a
OpenSource WoW Emulator
Loading...
Searching...
No Matches
AttackPosition Struct Reference

#include "Unit.h"

Public Member Functions

 AttackPosition (Position pos)
 
bool operator== (const int val)
 
int operator= (const int val)
 

Public Attributes

Position _pos
 
bool _taken
 

Detailed Description

Constructor & Destructor Documentation

◆ AttackPosition()

AttackPosition::AttackPosition ( Position  pos)
inline
564: _pos(std::move(pos)), _taken(false) {}
bool _taken
Definition: Unit.h:580
Position _pos
Definition: Unit.h:579

Member Function Documentation

◆ operator=()

int AttackPosition::operator= ( const int  val)
inline
570 {
571 if (!val)
572 {
573 // _pos = nullptr;
574 _taken = false;
575 return 0; // nullptr
576 }
577 return 0; // nullptr
578 };

References _taken.

◆ operator==()

bool AttackPosition::operator== ( const int  val)
inline
566 {
567 return !val;
568 };

Member Data Documentation

◆ _pos

Position AttackPosition::_pos

◆ _taken

bool AttackPosition::_taken

Referenced by operator=().