15 lines
295 B
C
15 lines
295 B
C
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "D3D12Submission.h"
|
|
|
|
// Standard Windows implementation, used to mark the type as 'final'.
|
|
struct FD3D12Payload final : public FD3D12PayloadBase
|
|
{
|
|
FD3D12Payload(FD3D12Queue& Queue)
|
|
: FD3D12PayloadBase(Queue)
|
|
{
|
|
}
|
|
};
|