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

Member Function Documentation

◆ operator=()

int AttackPosition::operator= ( const int  val)
inline
576 {
577 if (!val)
578 {
579 // _pos = nullptr;
580 _taken = false;
581 return 0; // nullptr
582 }
583 return 0; // nullptr
584 };

References _taken.

◆ operator==()

bool AttackPosition::operator== ( const int  val)
inline
572 {
573 return !val;
574 };

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: