mirror of
https://github.com/edubart/otclient.git
synced 2025-12-28 18:37:12 +01:00
Move definition to thingtype.cpp file
Move definition from thingtype.h to thingtype.cpp file
This commit is contained in:
@@ -178,7 +178,7 @@ public:
|
||||
bool isNotMoveable() { return m_attribs.has(ThingAttrNotMoveable); }
|
||||
bool blockProjectile() { return m_attribs.has(ThingAttrBlockProjectile); }
|
||||
bool isNotPathable() { return m_attribs.has(ThingAttrNotPathable); }
|
||||
void setPathable(bool var) { var == true ? m_attribs.remove(ThingAttrNotPathable) : m_attribs.set(ThingAttrNotPathable, true); }
|
||||
void setPathable(bool var);
|
||||
bool isPickupable() { return m_attribs.has(ThingAttrPickupable); }
|
||||
bool isHangable() { return m_attribs.has(ThingAttrHangable); }
|
||||
bool isHookSouth() { return m_attribs.has(ThingAttrHookSouth); }
|
||||
|
||||
Reference in New Issue
Block a user