mirror of
https://github.com/rehlds/metamod-r.git
synced 2024-12-27 07:05:34 +03:00
18 lines
838 B
C
18 lines
838 B
C
#pragma once
|
|
|
|
#include <studio.h>
|
|
|
|
// Typedef for Server_GetBlendingInterface() from Eric Smith on the hlcoders
|
|
// mailing list.
|
|
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]);
|