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