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.
24 lines
496 B
24 lines
496 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
// Purpose: Holds a pointer to the GC's host's interface |
|
// |
|
//============================================================================= |
|
|
|
#ifndef GCHOST_H |
|
#define GCHOST_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
#include "gamecoordinator/igamecoordinatorhost.h" |
|
|
|
namespace GCSDK |
|
{ |
|
|
|
|
|
extern IGameCoordinatorHost *GGCHost(); |
|
extern void SetGCHost( IGameCoordinatorHost *pHost ); |
|
|
|
} // namespace GCSDK |
|
|
|
#endif // GCHOST_H
|