mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-01-07 09:43:40 +08:00
23 lines
557 B
C
23 lines
557 B
C
//========= Copyright © 1996-2005, Valve Corporation, All rights reserved. ============//
|
|
//
|
|
// Purpose:
|
|
//
|
|
// $NoKeywords: $
|
|
//=============================================================================//
|
|
|
|
#ifndef MATSYS_H
|
|
#define MATSYS_H
|
|
#ifdef _WIN32
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "materialsystem/IMaterialSystem.h"
|
|
|
|
extern IMaterialSystem *g_pMaterialSystem;
|
|
extern CreateInterfaceFn g_MatSysFactory;
|
|
extern CreateInterfaceFn g_ShaderAPIFactory;
|
|
|
|
void InitMaterialSystem( const char *materialBaseDirPath );
|
|
|
|
#endif // MATSYS_H
|