// A game-downloading interface interface OnlineGameDownloadInterface dependson(OnlineSubsystem); enum EDownloadSpeed { EDLS_Pause, EDLS_Slow, EDLS_Fast, }; function bool IsGameComplete(); function bool IsChunkComplete( const int InChunkIndex, const bool bRequireFastAccess ); function bool AreChunksComplete( const array ChunkIndices, const bool bRequireFastAccess ); function bool DoesGameNeedRefresh(); function RefreshGame(); function float GetChunkETA( const int InChunkIndex ); function float GetChunksETA( const array ChunkIndices ); function float GetChunkProgress( const int InChunkIndex ); function float GetChunksProgress( const array ChunkIndices ); function float GetOverallProgress(); function array GetTodoList(); function SetChunksHighPriority( const array ChunkIndices ); function SetDownloadSpeed( const EDownloadSpeed InSpeed ); delegate OnChunkComplete( const int ChunkIndex ); function AddOnChunkCompleteDelegate( delegate InDelegate ); function ClearOnChunkCompleteDelegate( delegate InDelegate );