mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 18:08:59 +00:00
10 lines
133 B
C++
10 lines
133 B
C++
#pragma once
|
|
|
|
class CHud
|
|
{
|
|
public:
|
|
static void Draw(void);
|
|
static void DrawAfterFade(void);
|
|
|
|
static bool &m_Wants_To_Draw_Hud;
|
|
};
|