diff options
Diffstat (limited to 'public/gcsdk/gchost.h')
| -rw-r--r-- | public/gcsdk/gchost.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/public/gcsdk/gchost.h b/public/gcsdk/gchost.h new file mode 100644 index 0000000..00640c9 --- /dev/null +++ b/public/gcsdk/gchost.h @@ -0,0 +1,24 @@ +//========= 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
\ No newline at end of file |