2012-08-05 03:36:55 +02:00
|
|
|
/*
|
|
|
|
* This software is licensed under the terms of the MIT-License
|
2017-02-11 04:52:08 +01:00
|
|
|
* See COPYING for further information.
|
2012-08-05 03:36:55 +02:00
|
|
|
* ---
|
|
|
|
* Copyright (C) 2011, Lukas Weber <laochailan@web.de>
|
|
|
|
* Copyright (C) 2012, Alexeyew Andrew <http://akari.thebadasschoobs.org/>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CREDITS_H
|
|
|
|
#define CREDITS_H
|
|
|
|
|
|
|
|
void credits_loop(void);
|
2012-08-05 23:27:34 +02:00
|
|
|
void credits_add(char*, int);
|
2012-08-05 03:36:55 +02:00
|
|
|
|
|
|
|
#define CREDITS_ENTRY_FADEIN 200.0
|
|
|
|
#define CREDITS_ENTRY_FADEOUT 100.0
|
2012-08-06 06:17:51 +02:00
|
|
|
#define CREDITS_YUKKURI_SCALE 0.5
|
2012-08-05 03:36:55 +02:00
|
|
|
|
2012-08-14 17:56:53 +02:00
|
|
|
#define CREDITS_FADEOUT 120
|
|
|
|
|
2012-08-05 03:36:55 +02:00
|
|
|
#endif
|