Files
GTASource/game/event/EventErrors.cpp
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

35 lines
649 B
C++

//
// scriptEventTypes.cpp
//
// Copyright (C) 1999-2009 Rockstar Games. All Rights Reserved.
//
// --- Include Files ------------------------------------------------------------
#include "event/EventErrors.h"
#include "peds/ped.h"
#include "script/script.h"
CEventErrorUnknownError::CEventErrorUnknownError(void)
{
m_EventData.m_scriptNameHash=0;
}
CEventErrorStackOverflow::CEventErrorStackOverflow(void)
{
m_EventData.m_scriptNameHash=0;
}
CEventErrorArrayOverflow::CEventErrorArrayOverflow(void)
{
m_EventData.m_scriptNameHash=0;
}
CEventErrorInstructionLimit::CEventErrorInstructionLimit(void)
{
m_EventData.m_scriptNameHash=0;
}