mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-12-03 14:34:14 +01:00
16 lines
439 B
C
16 lines
439 B
C
|
#pragma once
|
||
|
|
||
|
class CCredits
|
||
|
{
|
||
|
static bool &bCreditsGoing;
|
||
|
static uint32 &CreditsStartTime;
|
||
|
public:
|
||
|
static void Init(void);
|
||
|
static void Start(void);
|
||
|
static void Stop(void);
|
||
|
static bool AreCreditsDone(void) { return bCreditsGoing; }
|
||
|
static void Render(void);
|
||
|
static void PrintCreditSpace(float space, uint32 &line);
|
||
|
static void PrintCreditText(float scaleX, float scaleY, wchar_t *text, uint32 &lineoffset, float scrolloffset);
|
||
|
};
|