19 lines
472 B
Plaintext
19 lines
472 B
Plaintext
// zzdlg_end_abort
|
|
//
|
|
// Original filename under Z-Dialog: zdlg_end_abort
|
|
// Copyright (c) 2004 Paul Speed - BSD licensed.
|
|
// NWN Tools - http://nwntools.sf.net/
|
|
//
|
|
// Additions and changes from original copyright (c) 2005-2006 Greyhawk0
|
|
|
|
// Aborted conversation end event script for the ZZ-Dialog system.
|
|
|
|
#include "zzdlg_tools_inc"
|
|
|
|
void main()
|
|
{
|
|
object oSpeaker = _dlgGetPcSpeaker();
|
|
_dlgSendEvent( oSpeaker, DLG_EVENT_ABORT );
|
|
_CleanupDlg( oSpeaker );
|
|
}
|