mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-21 20:56:23 +00:00
25 lines
342 B
C
25 lines
342 B
C
/*
|
|
REWRITTEN BY XINEF
|
|
*/
|
|
|
|
#ifndef DEF_DEADMINES_H
|
|
#define DEF_DEADMINES_H
|
|
|
|
#include "ScriptPCH.h"
|
|
|
|
enum DataTypes
|
|
{
|
|
TYPE_RHAHK_ZOR = 0,
|
|
TYPE_CANNON = 1,
|
|
MAX_ENCOUNTERS = 2
|
|
};
|
|
|
|
enum GameObjects
|
|
{
|
|
GO_FACTORY_DOOR = 13965,
|
|
GO_IRON_CLAD_DOOR = 16397
|
|
};
|
|
|
|
#endif
|
|
|