2016-07-26 23:31:47 +07:00
|
|
|
#pragma once
|
2016-07-26 15:18:32 +03:00
|
|
|
|
2016-07-26 23:31:47 +07:00
|
|
|
#include <studio.h>
|
2016-07-26 15:18:32 +03:00
|
|
|
|
2016-07-26 23:31:47 +07:00
|
|
|
// Typedef for Server_GetBlendingInterface() from Eric Smith on the hlcoders
|
2016-07-26 15:18:32 +03:00
|
|
|
// 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]);
|
2016-07-26 15:18:32 +03:00
|
|
|
|
|
|
|
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]);
|