blob: bd1582ed25c08e162312b92f0b8bd8e44e28667a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef TF_GC_API_H
#define TF_GC_API_H
#ifdef _WIN32
#pragma once
#endif
void GameCoordinator_NotifyGameState();
void GameCoordinator_NotifyLevelShutdown();
const char *GameCoordinator_GetRegistrationString();
#endif // TF_GC_API_H
|