1
0
mirror of https://github.com/alliedmodders/hl2sdk.git synced 2024-12-22 17:47:38 +08:00
hl2sdk/game/shared/iscenetokenprocessor.h
2013-06-26 15:22:04 -07:00

24 lines
608 B
C

//========= Copyright Valve Corporation, All rights reserved. ============//
//
// Purpose:
//
// $NoKeywords: $
//=============================================================================//
#ifndef ISCENETOKENPROCESSOR_H
#define ISCENETOKENPROCESSOR_H
#ifdef _WIN32
#pragma once
#endif
abstract_class ISceneTokenProcessor
{
public:
virtual const char *CurrentToken( void ) = 0;
virtual bool GetToken( bool crossline ) = 0;
virtual bool TokenAvailable( void ) = 0;
virtual void Error( PRINTF_FORMAT_STRING const char *fmt, ... ) = 0;
};
#endif // ISCENETOKENPROCESSOR_H