|
@@ -178,7 +178,6 @@ public:
|
178
|
178
|
bool isNotMoveable() { return m_attribs.has(ThingAttrNotMoveable); }
|
179
|
179
|
bool blockProjectile() { return m_attribs.has(ThingAttrBlockProjectile); }
|
180
|
180
|
bool isNotPathable() { return m_attribs.has(ThingAttrNotPathable); }
|
181
|
|
- void setPathable(bool var);
|
182
|
181
|
bool isPickupable() { return m_attribs.has(ThingAttrPickupable); }
|
183
|
182
|
bool isHangable() { return m_attribs.has(ThingAttrHangable); }
|
184
|
183
|
bool isHookSouth() { return m_attribs.has(ThingAttrHookSouth); }
|
|
@@ -207,6 +206,7 @@ public:
|
207
|
206
|
// additional
|
208
|
207
|
float getOpacity() { return m_opacity; }
|
209
|
208
|
bool isNotPreWalkable() { return m_attribs.has(ThingAttrNotPreWalkable); }
|
|
209
|
+ void setPathable(bool var);
|
210
|
210
|
|
211
|
211
|
private:
|
212
|
212
|
const TexturePtr& getTexture(int animationPhase);
|