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
584: _pos(std::move(pos)), _taken(false) {}
bool _taken
Definition Unit.h:600
Position _pos
Definition Unit.h:599

Member Function Documentation

◆ operator=()

int AttackPosition::operator= ( const int  val)
inline
590 {
591 if (!val)
592 {
593 // _pos = nullptr;
594 _taken = false;
595 return 0; // nullptr
596 }
597 return 0; // nullptr
598 };

References _taken.

◆ operator==()

bool AttackPosition::operator== ( const int  val)
inline
586 {
587 return !val;
588 };

Member Data Documentation

◆ _pos

Position AttackPosition::_pos

◆ _taken

bool AttackPosition::_taken

Referenced by operator=().


The documentation for this struct was generated from the following file: