1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-23 01:59:43 +08:00
hl2sdk/utils/vrad/vraddll.h

35 lines
786 B
C
Raw Normal View History

2013-06-27 06:22:04 +08:00
//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef VRADDLL_H
#define VRADDLL_H
#ifdef _WIN32
#pragma once
#endif
#include "ivraddll.h"
#include "ilaunchabledll.h"
class CVRadDLL : public IVRadDLL, public ILaunchableDLL
{
// IVRadDLL overrides.
public:
virtual int main( int argc, char **argv );
virtual bool Init( char const *pFilename );
virtual void Release();
virtual void GetBSPInfo( CBSPInfo *pInfo );
virtual bool DoIncrementalLight( char const *pVMFFile );
virtual bool Serialize();
virtual float GetPercentComplete();
virtual void Interrupt();
};
#endif // VRADDLL_H