2
0
mirror of https://github.com/rehlds/metamod-r.git synced 2025-01-14 15:47:54 +03:00
metamod-r/metamod/src/studioapi.h

18 lines
838 B
C
Raw Normal View History

2016-07-26 23:31:47 +07:00
#pragma once
2016-07-26 23:31:47 +07:00
#include <studio.h>
2016-07-26 23:31:47 +07:00
// Typedef for Server_GetBlendingInterface() from Eric Smith on the hlcoders
// mailing list.
2016-07-26 23:31:47 +07:00
typedef int (*GETBLENDAPI_FN)(int version,
2017-05-09 19:31:09 +03:00
struct sv_blending_interface_s** ppinterface,
struct engine_studio_api_s* pstudio,
float (*rotationmatrix)[3][4],
float (*bonetransform)[MAXSTUDIOBONES][3][4]);
extern int mm_Server_GetBlendingInterface(int version,
2017-05-09 19:31:09 +03:00
struct sv_blending_interface_s** ppinterface,
struct engine_studio_api_s* pstudio,
float (*rotationmatrix)[3][4],
float (*bonetransform)[MAXSTUDIOBONES][3][4]);