mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-17 08:19:00 +00: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);
|
||
|
};
|