mirror of
https://github.com/nillerusr/source-engine.git
synced 2025-03-13 05:02:54 +00:00
18 lines
346 B
C
18 lines
346 B
C
//========== Copyright © 2008, Valve Corporation, All rights reserved. ========
|
|
//
|
|
// Purpose:
|
|
//
|
|
//=============================================================================
|
|
|
|
#ifndef VLUA_H
|
|
#define VLUA_H
|
|
|
|
#if defined( _WIN32 )
|
|
#pragma once
|
|
#endif
|
|
|
|
IScriptVM *ScriptCreateLuaVM();
|
|
void ScriptDestroyLuaVM( IScriptVM *pVM );
|
|
|
|
#endif // VLUA_H
|