31 lines
894 B
C
31 lines
894 B
C
// BLANKART
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2024 by AJ "Tyron" Martinez.
|
|
// Copyright (C) 2024 by James Robert Roman.
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file k_director.h
|
|
/// \brief SRB2kart automatic spectator camera.
|
|
|
|
#ifndef __K_DIRECTOR_H__
|
|
#define __K_DIRECTOR_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
boolean K_DirectorIsAvailable(void);
|
|
void K_InitDirector(void);
|
|
void K_UpdateDirector(void);
|
|
void K_DrawDirectorDebugger(void);
|
|
void K_DirectorFollowAttack(player_t *player, mobj_t *inflictor, mobj_t *source);
|
|
void K_ToggleDirector(void);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif // __K_DIRECTOR_H__
|