Export NetPlayer_Init per request

This commit is contained in:
UnknownShadow200 2020-07-22 15:33:30 +10:00
parent 9d31c74d5d
commit 23c8e49280
2 changed files with 2 additions and 2 deletions

View File

@ -179,7 +179,7 @@ struct NetPlayer {
struct NetInterpComp Interp;
cc_bool ShouldRender;
};
void NetPlayer_Init(struct NetPlayer* player);
CC_API void NetPlayer_Init(struct NetPlayer* player);
extern struct NetPlayer NetPlayers_List[ENTITIES_SELF_ID];
/* Represents the user/player's own entity. */

View File

@ -34,7 +34,7 @@ struct LWidgetVTABLE {
#define LWidget_Layout \
const struct LWidgetVTABLE* VTABLE; /* General widget functions */ \
int x, y, width, height; /* Top left corner, and dimensions, of this widget */ \
int x, y, width, height; /* Top left corner and dimensions of this widget */ \
cc_bool hovered; /* Whether this widget is currently being moused over */ \
cc_bool selected; /* Whether this widget is last widget to be clicked on */ \
cc_bool hidden; /* Whether this widget is hidden from view */ \