re3/src/renderer/Credits.h

16 lines
410 B
C
Raw Normal View History

2019-05-31 00:32:50 +02:00
#pragma once
class CCredits
{
2020-04-17 07:54:14 +02:00
static bool bCreditsGoing;
static uint32 CreditsStartTime;
2019-05-31 00:32:50 +02:00
public:
static void Init(void);
static void Start(void);
static void Stop(void);
2019-10-27 15:05:47 +01:00
static bool AreCreditsDone(void);
2019-05-31 00:32:50 +02:00
static void Render(void);
static void PrintCreditSpace(float space, uint32 &line);
2019-06-01 23:17:39 +02:00
static void PrintCreditText(float scaleX, float scaleY, wchar *text, uint32 &lineoffset, float scrolloffset);
2019-05-31 00:32:50 +02:00
};