mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 09:44:45 +01:00
31 lines
658 B
C
31 lines
658 B
C
/* Copyright (C) 2006 - 2008 ScriptDev2 <https://scriptdev2.svn.sourceforge.net/>
|
|
* This program is free software licensed under GPL version 2
|
|
* Please see the included DOCS/LICENSE.TXT for more information */
|
|
|
|
#ifndef SC_PRECOMPILED_H
|
|
#define SC_PRECOMPILED_H
|
|
|
|
#include "../ScriptMgr.h"
|
|
#include "Cell.h"
|
|
#include "CellImpl.h"
|
|
#include "GridNotifiers.h"
|
|
#include "GridNotifiersImpl.h"
|
|
#include "Unit.h"
|
|
#include "GameObject.h"
|
|
#include "sc_creature.h"
|
|
#include "sc_gossip.h"
|
|
#include "sc_instance.h"
|
|
|
|
#ifdef WIN32
|
|
#include <windows.h>
|
|
BOOL APIENTRY DllMain( HANDLE hModule,
|
|
DWORD ul_reason_for_call,
|
|
LPVOID lpReserved
|
|
)
|
|
{
|
|
return true;
|
|
}
|
|
#endif
|
|
|
|
#endif
|