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