mirror of
https://github.com/DrBeef/JKXR.git
synced 2024-11-23 04:22:27 +00:00
39 lines
1.9 KiB
C
39 lines
1.9 KiB
C
/*
|
|
===========================================================================
|
|
Copyright (C) 2000 - 2013, Raven Software, Inc.
|
|
Copyright (C) 2001 - 2013, Activision, Inc.
|
|
Copyright (C) 2013 - 2015, OpenJK contributors
|
|
|
|
This file is part of the OpenJK source code.
|
|
|
|
OpenJK is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License version 2 as
|
|
published by the Free Software Foundation.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
===========================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
int Q3_PlaySound( int taskID, int entID, const char *name, const char *channel );
|
|
qboolean Q3_Set( int taskID, int entID, const char *type_name, const char *data );
|
|
void Q3_Lerp2Pos( int taskID, int entID, vec3_t origin, vec3_t angles, float duration );
|
|
void Q3_Lerp2Origin( int taskID, int entID, vec3_t origin, float duration );
|
|
void Q3_Lerp2Angles( int taskID, int entID, vec3_t angles, float duration );
|
|
int Q3_GetTag( int entID, const char *name, int lookup, vec3_t info );
|
|
void Q3_Lerp2Start( int entID, int taskID, float duration );
|
|
void Q3_Lerp2End( int entID, int taskID, float duration );
|
|
void Q3_Use( int entID, const char *target );
|
|
void Q3_Kill( int entID, const char *name );
|
|
void Q3_Remove( int entID, const char *name );
|
|
void Q3_Play( int taskID, int entID, const char *type, const char *name );
|
|
int Q3_GetFloat( int entID, int type, const char *name, float *value );
|
|
int Q3_GetVector( int entID, int type, const char *name, vec3_t value );
|
|
int Q3_GetString( int entID, int type, const char *name, char **value );
|