mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-31 00:46:46 +00:00
Replaced GetX(), GetY(), GetZ(), and GetHeading() in Doors with GetPosition()
This commit is contained in:
+1
-4
@@ -25,10 +25,7 @@ public:
|
||||
char* GetDoorName() { return door_name; }
|
||||
uint32 GetDoorParam() { return door_param; }
|
||||
int GetInvertState() { return invert_state; }
|
||||
float GetX() { return m_Position.m_X; }
|
||||
float GetY() { return m_Position.m_Y; }
|
||||
float GetZ() { return m_Position.m_Z; }
|
||||
float GetHeading() { return m_Position.m_Heading; }
|
||||
const xyz_heading GetPosition() const{ return m_Position; }
|
||||
int GetIncline() { return incline; }
|
||||
bool triggered;
|
||||
void SetOpenState(bool st) { isopen = st; }
|
||||
|
||||
Reference in New Issue
Block a user