#ifndef NATIVE_VSBUTTON_H
#define NATIVE_VSBUTTON_H
struct NativeEntity_MultiplayerButton : NativeEntityBase {
int unused1;
byte visible;
int unused2;
int unused3;
float x;
float y;
float z;
MeshInfo *meshVS;
float angle;
float scale;
byte textureCircle;
byte r;
byte g;
byte b;
MatrixF renderMatrix;
MatrixF matrixTemp;
NativeEntity_TextLabel *labelPtr;
#if RETRO_USE_NETWORKING
float connectTimer;
#endif
};
void MultiplayerButton_Create(void *objPtr);
void MultiplayerButton_Main(void *objPtr);
#endif