comparison Spells.h @ 839:ae8f83e1b0cf

coordinates for the town portal
author x1diablo
date Thu, 28 Mar 2013 20:14:14 +0200
parents a13d7b95424e
children 34ed2d5e7cfb
comparison
equal deleted inserted replaced
838:d061180f2b42 839:ae8f83e1b0cf
1 #pragma once 1 #pragma once
2 2
3 3 #include "VectorTypes.h"
4 4
5 /* 360 */ 5 /* 360 */
6 enum SPELL_TYPE 6 enum SPELL_TYPE
7 { 7 {
8 SPELL_FIRE_TORCH_LIGHT = 1, 8 SPELL_FIRE_TORCH_LIGHT = 1,
254 unsigned int Ypos; 254 unsigned int Ypos;
255 }; 255 };
256 256
257 #pragma pack(pop) 257 #pragma pack(pop)
258 258
259 /* 154 */
260 #pragma pack(push, 1)
261 struct TownPortalData
262 {
263 Vec3_int_ pos;
264 __int16 rot_y;
265 __int16 rot_x;
266 unsigned __int16 uMapInfoID;
267 __int16 field_12;
268 };
269 #pragma pack(pop)
270 extern TownPortalData TownPortalList[6]; //4ECBB8
271
259 272
260 extern struct SpellStats *pSpellStats; 273 extern struct SpellStats *pSpellStats;
261 274
262 extern struct SpellBookIconPos pIconPos[9][12]; 275 extern struct SpellBookIconPos pIconPos[9][12];
263 276