12 lines
130 B
C++
Executable File
12 lines
130 B
C++
Executable File
#pragma once
|
|
|
|
namespace Menu
|
|
{
|
|
BOOLEAN Init();
|
|
void Render();
|
|
void ShowPlayerInfo(Player plr);
|
|
bool IsOpen();
|
|
};
|
|
|
|
|