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.
25 lines
450 B
25 lines
450 B
#ifndef _IDLCMANAGER_H_
|
|
#define _IDLCMANAGER_H_
|
|
|
|
class IDlcManager;
|
|
|
|
#include "imatchsystem.h"
|
|
|
|
abstract_class IDlcManager
|
|
{
|
|
public:
|
|
//
|
|
// RequestDlcUpdate
|
|
// requests a background DLC update
|
|
//
|
|
virtual void RequestDlcUpdate() = 0;
|
|
virtual bool IsDlcUpdateFinished( bool bWaitForFinish = false ) = 0;
|
|
|
|
//
|
|
// GetDataInfo
|
|
// retrieves the last acquired dlc information
|
|
//
|
|
virtual KeyValues * GetDataInfo() = 0;
|
|
};
|
|
|
|
#endif // _IDLCMANAGER_H_
|