initial
This commit is contained in:
25
public/matchmaking/idlcmanager.h
Normal file
25
public/matchmaking/idlcmanager.h
Normal file
@@ -0,0 +1,25 @@
|
||||
#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_
|
||||
Reference in New Issue
Block a user