30 lines
964 B
C
30 lines
964 B
C
/***
|
|
*
|
|
* Copyright (c) 1996-2002, Valve LLC. All rights reserved.
|
|
*
|
|
* This product contains software technology licensed from Id
|
|
* Software, Inc. ("Id Technology"). Id Technology (c) 1996 Id Software, Inc.
|
|
* All Rights Reserved.
|
|
*
|
|
* Use, distribution, and modification of this source code and/or resulting
|
|
* object code is restricted to non-commercial enhancements to products from
|
|
* Valve LLC. All other use, distribution, or modification is prohibited
|
|
* without written permission from Valve LLC.
|
|
*
|
|
****/
|
|
#ifndef SCRIPTEVENT_H
|
|
#define SCRIPTEVENT_H
|
|
|
|
#define SCRIPT_EVENT_DEAD 1000
|
|
#define SCRIPT_EVENT_NOINTERRUPT 1001
|
|
#define SCRIPT_EVENT_CANINTERRUPT 1002
|
|
#define SCRIPT_EVENT_FIREEVENT 1003
|
|
#define SCRIPT_EVENT_SOUND 1004
|
|
#define SCRIPT_EVENT_SENTENCE 1005
|
|
#define SCRIPT_EVENT_INAIR 1006
|
|
#define SCRIPT_EVENT_ENDANIMATION 1007
|
|
#define SCRIPT_EVENT_SOUND_VOICE 1008
|
|
#define SCRIPT_EVENT_SENTENCE_RND1 1009
|
|
#define SCRIPT_EVENT_NOT_DEAD 1010
|
|
|
|
#endif |