WoW Model Viewer
Your premiere tool for viewing, equipping and animating World of Warcraft models.
Loading...
Searching...
No Matches
NPCInfos.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
7{
8public:
9 NPCInfos();
11 {
12 }
13
14 int id;
16 int type;
17 std::wstring name;
18};
Stores basic NPC metadata (id, display id, type, name) imported from external sources.
Definition NPCInfos.h:7
~NPCInfos()
Definition NPCInfos.h:10
int type
NPC type.
Definition NPCInfos.h:16
int id
NPC identifier.
Definition NPCInfos.h:14
int displayId
Creature display info ID.
Definition NPCInfos.h:15
std::wstring name
Display name (wide string).
Definition NPCInfos.h:17