mirror of
https://github.com/UberGames/rpgxEF.git
synced 2025-02-21 19:41:18 +00:00
... not quite content with where the project files lie but it is ok for now. ... compiling works fine so far (only tested mingw32 right now)
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_
|