mirror of
https://github.com/nillerusr/source-engine.git
synced 2024-12-22 06:06:50 +00:00
36 lines
1.1 KiB
C++
36 lines
1.1 KiB
C++
//========= Copyright Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef MOVIEOBJECTS_INTERFACE_H
|
|
#define MOVIEOBJECTS_INTERFACE_H
|
|
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// typedefs that should be in platform.h
|
|
//-----------------------------------------------------------------------------
|
|
typedef unsigned char uchar;
|
|
typedef unsigned short ushort;
|
|
typedef unsigned int uint;
|
|
typedef unsigned long ulong;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Forward declarations
|
|
//-----------------------------------------------------------------------------
|
|
class IGlobalFlexController;
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
// Global interfaces used by the movieobjects library
|
|
//-----------------------------------------------------------------------------
|
|
extern IGlobalFlexController *g_pGlobalFlexController;
|
|
|
|
|
|
#endif // MOVIEOBJECTS_INTERFACE_H
|