mirror of
https://github.com/GTAmodding/re3.git
synced 2025-10-08 15:30:37 +00:00
added CCredits
This commit is contained in:
parent
2bf6674afc
commit
454276f940
4 changed files with 529 additions and 0 deletions
15
src/render/Credits.h
Normal file
15
src/render/Credits.h
Normal file
|
@ -0,0 +1,15 @@
|
|||
#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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue