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

18 lines
566 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,
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,
struct sv_blending_interface_s **ppinterface,
struct engine_studio_api_s *pstudio,
float (*rotationmatrix)[3][4],
float (*bonetransform)[MAXSTUDIOBONES][3][4]);