mirror of
https://github.com/UberGames/RPG-X2.git
synced 2024-11-15 01:11:46 +00:00
eb2bd43add
- added basic cinematic camera mode (needs much more work until it is finished)
10 lines
310 B
C
10 lines
310 B
C
#ifndef _G_CIN_H_
|
|
#define _G_CIN_H_
|
|
#include "g_local.h"
|
|
|
|
void Cinematic_ActivateCameraMode(gentity_t *ent, gentity_t *target);
|
|
void Cinematic_DeactivateCameraMode(gentity_t *ent);
|
|
void Cinematic_ActivateGlobalCameraMode(gentity_t *target);
|
|
void Cinematic_DeactivateGlobalCameraMode(void);
|
|
|
|
#endif //_G_CIN_H_
|