1 /*
2 * authors_note.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 __authors_note
9 #define __authors_note
10 
11 #include "ui.h"
12 #include "button.h"
13 #include <vector>
14 
15 struct authors_note : ui, click_listener {
16 
17   button buy_now;
18   button buy_later;
19 
20   int rollup;
21 
22 	authors_note ();
23   void enter ();
24   void leave ();
25 	int handle_input ();
26 	void draw ();
27   void setup ();
28 	void clicked (button& b);
29 
30 };
31 
32 extern authors_note anote;
33 
34 #endif
35