summaryrefslogtreecommitdiff
path: root/src/screen/credits.h
blob: 0b0531204dcfe4acb10fe3e68d6b87da614f8b53 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#ifndef SCREEN_CREDITS_H

#    define SCREEN_CREDITS_H

#    define SCREEN_CREDITS_FILE		"AUTHORS"

#    define SCREEN_CREDITS_OFFSET_MIN	130
#    define SCREEN_CREDITS_OFFSET_MAX	WINDOW_SIZE_Y-120
#    define SCREEN_CREDITS_OFFSET_RESTART	-1000
#    define SCREEN_CREDITS_OFFSET_SPEED	2

extern void scredits_start();
extern void scredits_draw();
extern void scredits_event();
extern void scredits_stop();
extern void scredits_init();
extern void scredits_quit();

#endif