1 /*
2 * cross_button.h
3 * DIN Is Noise is copyright (c) 2006-2021 Jagannathan Sampath
4 * DIN Is Noise is released under GNU Public License 2.0
5 * For more information, please visit https://dinisnoise.org/
6 */
7 
8 #ifndef __cross_button
9 #define __cross_button
10 
11 #include "button.h"
12 
13 struct cross_button : button {
14   cross_button (int sz = 8) {set_size (sz);}
updatecross_button15   void update () { set_size (size); }
16   void draw ();
17 };
18 
19 #endif
20 
21 
22 
23