bodyparts separated
[k8-i-v-a-n.git] / src / game / bodyparts / head_ennerhead.cpp
blobe9f5af95b7f51599f489cda30ba64e666b11a1f0
1 #ifdef HEADER_PHASE
2 ITEM(ennerhead, head)
4 protected:
5 virtual int GetClassAnimationFrames() const { return 32; }
6 virtual v2 GetBitmapPos(int) const;
7 };
10 #else
14 v2 ennerhead::GetBitmapPos(int Frame) const { return Frame & 16 ? head::GetBitmapPos(Frame) : head::GetBitmapPos(Frame) + v2(16, 0); }
15 #endif