You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
918 B
25 lines
918 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
//=======================================================================================// |
|
|
|
#ifndef REPLAY_INPUT_PANEL_H |
|
#define REPLAY_INPUT_PANEL_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
//----------------------------------------------------------------------------- |
|
|
|
#include "replay/replayhandle.h" |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Show Replay input panel for entering a title, etc. |
|
//----------------------------------------------------------------------------- |
|
void ShowReplayInputPanel( ReplayHandle_t hReplay ); |
|
|
|
//----------------------------------------------------------------------------- |
|
// Purpose: Is the panel visible? |
|
//----------------------------------------------------------------------------- |
|
bool IsReplayInputPanelVisible(); |
|
|
|
#endif // REPLAY_INPUT_PANEL_H
|
|
|