summaryrefslogtreecommitdiffstats
path: root/menu_demo/button.h
blob: 81bb418d3f181d1ec202077906256cccd51e9e1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef _CBUTTON_H
#define _CBUTTON_H

#define BUTTON_MAX_TITLE 256

struct ButtonStruct {
  double m_dXPos;
  double m_dYPos;
  double m_dWidth;
  char   m_pcTitle[BUTTON_MAX_TITLE];
  int    m_iType;
};

void ButtonRender(struct ButtonStruct *f_sButton);

#endif