server/game/src/xmas_event.h
2022-03-05 12:44:06 +02:00

19 lines
396 B
C++

#ifndef __INC_XMAS_EVENT_H
#define __INC_XMAS_EVENT_H
namespace xmas
{
enum
{
MOB_SANTA_VNUM = 20031, //»êŸ
// MOB_SANTA_VNUM = 20095, //³ëÇØ
MOB_XMAS_TREE_VNUM = 20032,
MOB_XMAS_FIRWORK_SELLER_VNUM = 9004,
};
void ProcessEventFlag(const std::string& name, int prev_value, int value);
void SpawnSanta(long lMapIndex, int iTimeGapSec);
void SpawnEventHelper(bool spawn);
}
#endif