| 192 | } |
| 193 | |
| 194 | void InitBarOwner() |
| 195 | { |
| 196 | int i; |
| 197 | |
| 198 | bannerflag = FALSE; // unused |
| 199 | InitTownerInfo(numtowners, 96, 1, TOWN_TAVERN, 55, 62, 3, 10); |
| 200 | InitQstSnds(numtowners); |
| 201 | towner[numtowners]._tNData = LoadFileInMem("Towners\\TwnF\\TwnFN.CEL", NULL); |
| 202 | for (i = 0; i < 8; i++) { |
| 203 | towner[numtowners]._tNAnim[i] = towner[numtowners]._tNData; |
| 204 | } |
| 205 | towner[numtowners]._tNFrames = 16; |
| 206 | NewTownerAnim(numtowners, towner[numtowners]._tNAnim[DIR_SW], towner[numtowners]._tNFrames, 3); |
| 207 | strcpy(towner[numtowners]._tName, "Ogden the Tavern owner"); |
| 208 | numtowners++; |
| 209 | } |
| 210 | |
| 211 | void InitTownDead() |
| 212 | { |
no test coverage detected