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

Member Function Documentation

◆ operator=()

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

References _taken.

◆ operator==()

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

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: