You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
966 B
33 lines
966 B
//========= Copyright Valve Corporation, All rights reserved. ============// |
|
// |
|
//=======================================================================================// |
|
|
|
#ifndef IREPLAYERRORSYSYTEM_H |
|
#define IREPLAYERRORSYSYTEM_H |
|
#ifdef _WIN32 |
|
#pragma once |
|
#endif |
|
|
|
//---------------------------------------------------------------------------------------- |
|
|
|
#include "interface.h" |
|
|
|
//---------------------------------------------------------------------------------------- |
|
|
|
class KeyValues; |
|
|
|
//---------------------------------------------------------------------------------------- |
|
|
|
// |
|
// Replay error system |
|
// |
|
class IReplayErrorSystem : public IBaseInterface |
|
{ |
|
public: |
|
virtual void AddErrorFromTokenName( const char *pToken ) = 0; |
|
virtual void AddFormattedErrorFromTokenName( const char *pFormatToken, KeyValues *pFormatArgs ) = 0; |
|
}; |
|
|
|
//---------------------------------------------------------------------------------------- |
|
|
|
#endif // IREPLAYERRORSYSYTEM_H
|