summaryrefslogtreecommitdiffstats
path: root/menu_demo/button.h
blob: 27f57a457a8b9bc2564b82d07a5a54a1cb3f2671 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef _CBUTTON_H
#define _CBUTTON_H

struct ButtonStruct {
  double m_dXPos;
  double m_dYPos;
  int m_iType;
};

#endif