| 148 | } |
| 149 | |
| 150 | void InitializeDragon(short itemNumber) |
| 151 | { |
| 152 | auto& item = g_Level.Items[itemNumber]; |
| 153 | |
| 154 | // Initialize front body segment. |
| 155 | InitializeCreature(item.Index); |
| 156 | SetAnimation(item, DRAGON_ANIM_IDLE); |
| 157 | |
| 158 | // Initialize back body segment. |
| 159 | InitializeDragonBack(item); |
| 160 | } |
| 161 | |
| 162 | static void SyncDragonBackSegment(ItemInfo& frontItem) |
| 163 | { |
nothing calls this directly
no test coverage detected