Re3/src/render/Credits.h

16 lines
412 B
C
Raw Normal View History

2019-05-30 18:32:50 -04: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 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
};